1.2 Advantages & Disadvantages Mussa Baujiti April 24, 2019 0 Comments 1.2 Advantages & Disadvantages Advantages 1. vendor-neutral: the C++ standard is the same in any platform or compiler 2. ... Read More Read more No comments:
1 Structure of program Mussa Baujiti April 24, 2019 0 Comments 1 Structure of program /* This Program prints Hello World on screen */ #include <iostream.h> using namespace std; int mai... Read More Read more No comments:
3.1 Variables Mussa Baujiti April 24, 2019 0 Comments 3.1 Variables A variable in C++ is a name for a piece of memory that can be used to store information. There are many types of ... Read More Read more No comments:
3.2 Variable scope Mussa Baujiti April 24, 2019 0 Comments 3.2 Variable scope refers to where variables is declared. It can be Inside a function or a block which is called local variabl... Read More Read more No comments:
3.3 Constants - Literals Mussa Baujiti April 24, 2019 0 Comments 3.3 Constants - Literals Constants refer to fixed values in the code that you can't change and they are called literals. Co... Read More Read more No comments:
3.4 Variable Storage Classes Mussa Baujiti April 24, 2019 0 Comments 3.4 Variable Storage Classes auto The default class. Automatic variables are local to their block. Their storage space is recla... Read More Read more No comments:
3.5 Operators Mussa Baujiti April 24, 2019 0 Comments 3.5 Operators An operator is a symbol. Compiler identifies Operator and performs specific mathematical or logical operation. C p... Read More Read more No comments: