list the no of files created when c source file is compiled
Answers were Sorted based on User's Feedback
Answer / abhijeet kankani
Basically 4 files:
a).c (source code file)
b).obj(object file in which .i and .asm are also included)
c).exe
d).bak (backup)
Is This Answer Correct ? | 48 Yes | 3 No |
Answer / suman halder
a).i /* expanded source code generated by preprocessor */
b).asm /* code generated by the compiler */
c).obj /* code generated by the assembler */
d).bak
e).exe /* executable code generated after linking */
Is This Answer Correct ? | 13 Yes | 4 No |
Answer / rakesh
.cpp/.c // code
.i //after pre-prossesor
.obj // object file
.bak
.exe
Is This Answer Correct ? | 11 Yes | 3 No |
Answer / niket raj gahoi
there are 6 file created they are
1) .c
2) .i
3) .obj
4) .bak
5) .asm
6 .exe
Is This Answer Correct ? | 6 Yes | 4 No |
When should the volatile modifier be used?
why division operator not work in case of float constant?
What is the purpose of & in scanf?
how can use subset in c program and give more example
A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
The difference between printf and fprintf is ?
how to implement stack operation using singly linked list
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
What is selection sort in c?
what is meant by flushll() in c programming?
Give me basis knowledge of c , c++...