how c source file in converted to exe file

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the benefits of c language?

905


Explain main function in c?

872


What is #include cctype?

848


write a program for the normal snake games find in most of the mobiles.

2042


Differentiate between the = symbol and == symbol?

951


Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;

860


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

23141


What does it mean when a pointer is used in an if statement?

878


Difference between malloc() and calloc() function?

909


What's the difference between constant char *p and char * constant p?

918


What is union and structure?

806


What is wrong with this declaration?

852


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

3289


What are operators in c?

801


What is omp_num_threads?

851