I am using this repo to deposit the codes of C++ language while I am learnig it.
g++ -o executable_name codefilename.cpp
to compile the code,
./executable_name
to execute the executable program.
Codes Names and Purpose:
1_hello_world: simple first code to just print out a sentence.
2_input_output: calculator program to understand the input output in c++
3_variable: examples of diff types of variables in C++
4_array: example of using an array
The reference books I am following are,
- C++ programming by ULLMAN and SIGNER
- Teach yourself C++ by Schildt