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 |
What is null pointer constant?
what is the size of an integer variable?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
What do you mean by scope of a variable in c?
Why header files are used?
What is queue in c?
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
Differentiate between static and dynamic modeling.
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
Write a program to identify if a given binary tree is balanced or not.
what is ANSI and ISO
Explain how can a program be made to print the line number where an error occurs?