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 an lvalue?
What is the difference between ++a and a++?
What happens if you free a pointer twice?
a=5 a=a++/++a
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Explain what is the difference between far and near ?
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
How is null defined in c?
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
What does 2n 4c mean?
what is the coding of display the factorial of a number using array and function?
How can you invoke another program from within a C program?