What will happen if some indentations are made in some statements of a code written in c++?
Answers
Answered by
67
What will happen if some indentation is made in some statement of a code written in C++?
With a well-written pre-processor, absolutely nothing!
The purpose of the pre-processor is to allow for:
Importing the #include files and doing substitutions as needed.
Substitution of macros.
Checking for egregious syntax errors.
Formatting for easy reading.
With a well-written pre-processor, absolutely nothing!
The purpose of the pre-processor is to allow for:
Importing the #include files and doing substitutions as needed.
Substitution of macros.
Checking for egregious syntax errors.
Formatting for easy reading.
Answered by
4
What will happen if some indentation is made in some statement of a code written in C++?
With a well-written pre-processor, absolutely nothing!
The purpose of the pre-processor is to allow for:
Substitution of macros.
Checking for egregious syntax errors.
Formatting for easy reading.
Importing the #include files and doing substitutions as needed.
#SPJ2
Similar questions