⟩ What is cpp?
The preprocessor is called cpp, however it is called automatically by the compiler so you will not need to call it while programming in C.
The preprocessor is called cpp, however it is called automatically by the compiler so you will not need to call it while programming in C.
What is a macro in C Preprocessor?
What is the general form of #line preprocessor?
Explain what are the Sizes and ranges of the Basic C++ data types?
What are the basics of local (auto) objects?
Do you know what are the new features that ISO/ANSI C++ has added to original C++ specifications?
How to Declaring Variables in C++?
What are the scope rules you observed in the program?taskc++ investigate the operation of scope rules in a program.// variablenamescope#include <iostream>using namespace std;int i = 111;int main(){{int i = 222;{int i = 333;cout << "i = " << i << endl;{int i = 444;cout << "i = " << i << endl;{cout << "i = " << i << endl;}}}cout << "i = " << i << endl;}cout << "i = " << i << endl;return 0;}
Write a short code using C++ to print out all odd number from 1 to 100 using a for loop?
What OO language is best?
What’s the “Software Peter Principle”?