which will be first in c compiling ,linking or compiling
,debugging.
Answer Posted / vignesh1988i
the first will be compilation process , then the linking will be intermediate to compilation and run will be at last......
compilation is a process of spiliting up ur program instructions into tokens, words , keywords etc and match with the syntax defined in the compiler............. it's like spiliting the english sentances........into words and words to characters./........
thank u
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Where define directive used?
What is difference between structure and union?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Can a pointer be volatile in c?
Write program to remove duplicate in an array?
What is the heap?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Write a code to generate divisors of an integer?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Explain About fork()?
What are the advantages of using macro in c language?
program for reversing a selected line word by word when multiple lines are given without using strrev
Explain a pre-processor and its advantages.
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles