which will be first in c compiling ,linking or compiling
,debugging.
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
What is the difference between single charater constant and string constant?
Find string palindrome 10marks
5 Answers Honeywell, Infosys, Riktam, Roland,
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
Tell me the use of bit field in c language?
char ch="{'H','I',0};printf("%s",ch);what is output
how c source file in converted to exe file
What are the keywords in c?
What is difference between main and void main?
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
Explain what is the most efficient way to store flag values?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?