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
find the sum of two matrices and WAP for it.
Does c have enums?
What is the difference between declaring a variable and defining a variable?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is bubble sort in c?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Explain how can you restore a redirected standard stream?
Can we declare variables anywhere in c?
Why do we use header files in c?
What are the types of c language?
In C, What is the #line used for?
Why is %d used in c?