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
How can my program discover the complete pathname to the executable from which it was invoked?
Can you please explain the difference between malloc() and calloc() function?
What is integer constants?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
How does free() know explain how much memory to release?
What is the difference between malloc() and calloc() function in c language?
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
Why is c still so popular?
What are lookup tables in c?
Difference between Shallow copy and Deep copy?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is structure pointer in c?
Why & is used in scanf in c?
What is your stream meaning?
Explain the Difference between the New and Malloc keyword.