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 local and global variable in c?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Explain what is the difference between functions getch() and getche()?
Does sprintf put null character?
how to create duplicate link list using C???
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
What are the languages are portable and platform independent?Why they are like that?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What is a void * in c?
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
What is array of pointers to string?