Description Submission The optimum policy here is to accept the earliest finished workshops.
Messages Order – C++
Description In real life applications and systems, a common component is a messaging system. Thea idea is that a sender sends messages to the recipient. […]
Overloading Ostream Operator – C++
Description The task is to overload the << operator for Person class in such a way that for p being an instance of class Person the result […]
Day 2: Operators – C++
It’s about the usage of the function round. References http://www.cplusplus.com/reference/cmath/round/
Virtual Functions – C++
Descritpion Submission There are 2 major points here, pure virtual function and static member variable. References https://en.cppreference.com/w/cpp/language/static
Inherited Code – C++
It’s interesting to inherit the exception class.
Preprocessor Solution – C++
Preprocessors sometimes only do dull string replacement jobs but with amazing effects. References https://fenghe.us/the-c-preprocessor/ http://www.cplusplus.com/doc/tutorial/preprocessor/