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 |
Explain how do you generate random numbers in c?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
count the numbers between 100 and 300, that star with 2 and ends with 2
write a program wch produces its own source code aas its output?
What is the mean of function?
what is used instead of pointers in java than c?
Explain low-order bytes.
what is the size of an integer variable?
Differentiate between calloc and malloc.
Explain built-in function?
Can you think of a way when a program crashed before reaching main? If yes how?
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?