which will be first in c compiling ,linking or compiling
,debugging.

Answers were Sorted based on User's Feedback



which will be first in c compiling ,linking or compiling ,debugging...

Answer / siri&akhi

first compilation will take place and after that linking
will take place . debugging is checking for bugsi.e., errors

Is This Answer Correct ?    9 Yes 0 No

which will be first in c compiling ,linking or compiling ,debugging...

Answer / 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

which will be first in c compiling ,linking or compiling ,debugging...

Answer / narender b

first it would be linking and then after linking complete..
the compiling complete its job

debugging is the process to debugg the code to find the bug
debugging is not the process of compling

Is This Answer Correct ?    2 Yes 8 No

Post New Answer

More C Interview Questions

What is the default value of local and global variables in c?

0 Answers  


What functions are used in dynamic memory allocation in c?

0 Answers  


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}

9 Answers   TCS,


can a union be self-referenced?

1 Answers  






what is pointer ?

10 Answers   Kernex Micro Systems,


write a program to display the frequency of each element in a given array in c language

1 Answers  


what is a NULL pointer?

2 Answers  


difference between native and cross compilers

0 Answers  


What is volatile c?

0 Answers  


What does != Mean in c?

0 Answers  


Is it possible to create recycle bin in mobiles?

2 Answers  


Categories