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 |
Is using exit() the same as using return?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
about c language
How can you dynamically allocate memory in C?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What is an example of enumeration?
How can you tell whether two strings are the same?
What are the primitive data types in c?
to get a line of text and count the number of vowels in it
What is variable and explain rules to declare variable in c?
Can a binary search tree be used as an index? If yes, how? Explain