InterviewSolution
| 1. |
What Is The General Form Of #line Preprocessor? |
|
Answer» General FORM of #line preprocessor is #line NUMBER "filename" Here the file name is optional. Filename string replaces the string value of _ _FILE_ _ while the number changes the value of _ _LINE_ _. The major use of #line is in DEBUGGING and rare programming situation. Following C SOURCE code shows the #line preprocessor in action - #include General form of #line preprocessor is #line number "filename" Here the file name is optional. Filename string replaces the string value of _ _FILE_ _ while the number changes the value of _ _LINE_ _. The major use of #line is in debugging and rare programming situation. Following C Source code shows the #line preprocessor in action - #include |
|