How can we see the Expanded source code and compiled code
for our source program in C?
Answer Posted / 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 |
Post New Answer View All Answers
What is time complexity c?
How do you determine a file’s attributes?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What does the message "automatic aggregate intialization is an ansi feature" mean?
Explain how do you convert strings to numbers in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is a pointer and how it is initialized?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What does nil mean in c?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Can you please explain the scope of static variables?
What is unary operator?
Explain what are the different file extensions involved when programming in c?
What is c standard library?
What is difference between Structure and Unions?