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
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What type is sizeof?
What are types of structure?
What is an endless loop?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is calloc malloc realloc in c?
Write a code to generate divisors of an integer?
Explain how do you search data in a data file using random access method?
What are the main characteristics of c language describe the structure of ac program?
Is it possible to pass an entire structure to functions?
What is the difference between fread buffer() and fwrite buffer()?
How can my program discover the complete pathname to the executable from which it was invoked?
What are variables c?
Can you explain the four storage classes in C?
write a program to print largest number of each row of a 2D array