Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 718 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 718 Bytes

CppBasics

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,

  1. C++ programming by ULLMAN and SIGNER
  2. Teach yourself C++ by Schildt