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 |
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
what is link list?
Explain what are bus errors, memory faults, and core dumps?
How can I change the size of the dynamically allocated array?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
What does it mean when the linker says that _end is undefined?
What is volatile variable in c?
What are types of functions?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
what is c language.