Learn C++ (7) – OOP
Reference W3School - C++ Tutorial Create a Class To create a class, use the class keyword and end the class…
Reference W3School - C++ Tutorial Create a Class To create a class, use the class keyword and end the class…
Reference W3School - C++ Tutorial Creating References A reference variable is a "reference" to an existing variable, and…
Reference W3School - C++ Tutorial Conditions check Support these conditional check: if elseelse if(condition) ? expressionTrue : expressFalseswitch…
Reference W3School - C++ Tutorial Data Types Data TypeSizeDescriptionbool1 byteStores true or false valueschar1 byteStores a single character/letter/number,…
Reference W3School - C++ Tutorial cout and cin cout is used to output (print) values. cin is a predefined variable…
Reference W3School - C++ Tutorial Constants When you do not want others (or yourself) to change existing variable…
Reference W3School - C++ Tutorial C++ Variables In C++, there are different types of variables (defined with different keywords), for…
Reference Tutorial Point - C Tutorial Command Line Arguments It is possible to pass some values from the…
Reference Tutorial Point - C Tutorial Memory Management The C programming language provides several functions for memory allocation…
Reference Tutorial Point - C Tutorial Variable Arguments In C, you can define a function which can accept…
Reference Tutorial Point - C Tutorial See this article in the Reference
Reference Tutorial Point - C Tutorial Error Handling C programming does not provide direct support for error handling…
Reference Tutorial Point - C Tutorial Type Casting Converting one datatype into another is known as type casting…
Reference Tutorial Point - C Tutorial Header Files A header file is a file with extension .h which contains C…
Reference Tutorial Point - C Tutorial Preprocessor The C Preprocessor is not a part of the compiler, but is a…
Reference Tutorial Point - C Tutorial Opening Files FILE *fopen( const char * filename, const char * mode…
Reference Tutorial Point - C Tutorial Input and Output When we say Input, it means to feed some data…
Reference Tutorial Point - C Tutorial typedef typedef is used to give a type a new name. Following…