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 the meaning of 'c' language
WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 Answers Finite Infotech, Lovely Professional University, Wipro,
convert 0.9375 to binary
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
Why does the call char scanf work?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
What is the restrict keyword in C?
why you will give me a job in TCS.
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is difference between union and structure in c?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.