how c source file in converted to exe file

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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can my program discover the complete pathname to the executable from which it was invoked?

859


Can you please explain the difference between malloc() and calloc() function?

871


What is integer constants?

808


how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?

1695


How does free() know explain how much memory to release?

815


What is the difference between malloc() and calloc() function in c language?

829


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

915


Why is c still so popular?

796


What are lookup tables in c?

760


Difference between Shallow copy and Deep copy?

1790


"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above

830


What is structure pointer in c?

785


Why & is used in scanf in c?

814


What is your stream meaning?

854


Explain the Difference between the New and Malloc keyword.

886