How can we see the Expanded source code and compiled code
for our source program in C?
Answer / rajesh jat
go to command prompt change the directory in which the
program exist and then type command
cpp programname.c
it will generate programname.i file
that's the expanded source code
//KEEP IT DIRTY
| Is This Answer Correct ? | 9 Yes | 3 No |
what is a NULL pointer?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is the difference between single charater constant and string constant?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Explain how can you tell whether two strings are the same?
Explain enumerated types in c language?
Explain void pointer?
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
what is ans for this scanf(%%d",c);
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What is Dynamic Initialization.