how c source file in converted to exe file
Answers were Sorted based on User's Feedback
Answer / anil kumar
For this ans first we have to know the c-compiler architecture
in c we will save the file with .c extension
the compiler first preprocessor toolconverts the .c file into .i(intermediate code) again .i into .asm(assembler) , .asm into .obj(object code) this object code wil be linked with the object for the library functions and generates a .exe(excutable file)
| Is This Answer Correct ? | 19 Yes | 1 No |
Answer / anand shankar pathak
first .c file is converted to .i format it is done by the preprocessor and then the compiler convert this file to .asm file later assembler creats object that is linbked together using linker and loader and finally .exe file is genrated
and this process is done automatically while we execute the program we don't have to do anything,
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / manish soni tagore collage jai
first
source file(file name or code program)--complile-->object
file(filename.bak)----excute----->.exe(fliename.exe)
| Is This Answer Correct ? | 1 Yes | 10 No |
Answer / ruth
c source file converted into exe file automatically when
you run the program
| Is This Answer Correct ? | 5 Yes | 19 No |
/* hello i am ricky dobriyal student of bca from simt
kashipur*/
c source file converted into exe file automatically when
you run the program
thank you..
| Is This Answer Correct ? | 8 Yes | 24 No |
Please write the area of a RIGHT ANGLED TRIANGLE.
Differentiate between null and void pointers.
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
Do you know what are the properties of union in c?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
What are the different types of C instructions?
Difference between MAC vs. IP Addressing
What is clrscr ()?
define function
1. Write a program to reverse every second word in a given sentence.
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?