Category: C++

07
Jun
2015

c++ decision making

switch statement int zaki; cin>>zaki; switch(zaki) { case 1: cout<<“This is 1”; break; case 2: cout<<“This is…

07
Jun
2015

C++ Loops

Basics of Loop: while(condition){ statement; } do{ statement; }while(condition); for(initialize;condition;increment){ statement; } Nested Loops: while(condition){ do{ statement;…

07
Jun
2015

C++ Recap

I am recaping what I learned from tutorialspoint.com so far Identifier:I can define taht is c++ Keyword:Some…

07
Jun
2015

Function in C++

Syntax: function_type function_name(parameter_type parameter_name,parameter_type parameter_name){ function_body; return function_type; } return will work for any function_type except void….void…