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 do you mean by enumeration constant?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
how to determine the complexity of an algorithm as log(n)
in which language c language is written?
What does the characters “r” and “w” mean when writing programs that will make use of files?
what is c
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
Why do we need volatile in c?
Give a method to count the number of ones in a 32 bit number?
write a c program for greatest of three numbers without using if statment
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
What is infinite loop?