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
What are the benefits of c language?
Explain main function in c?
What is #include cctype?
write a program for the normal snake games find in most of the mobiles.
Differentiate between the = symbol and == symbol?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
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!+....
What does it mean when a pointer is used in an if statement?
Difference between malloc() and calloc() function?
What's the difference between constant char *p and char * constant p?
What is union and structure?
What is wrong with this declaration?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What are operators in c?
What is omp_num_threads?