⟩ What are the advantages of C Preprocessor?
► Programs easier to develop,
► Easier to read,
► Easier to modify
► C code more transportable between different machine architectures.
► Programs easier to develop,
► Easier to read,
► Easier to modify
► C code more transportable between different machine architectures.
What is ## Preprocessor operator in C?
What is the mean of function?
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?