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 |
what do you mean by defining a variable in our c code?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
code for bubble sort?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
using for loop sum 2 number of any 4 digit number in c language
Meaning of () in c
What is the meaning of int *x[]();?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
How is pointer initialized in c?