what are the stages of compilation
Answer / rajesh
There are three stages of compilation
1) Preprocesing
2) Compilation
3) linking
| Is This Answer Correct ? | 16 Yes | 3 No |
What is #define in c?
Why do we need a structure?
What are the average number of comparisons required to sort 3 elements?
Why functions are used in c?
What is the difference between a string and an array?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
how to find sum of digits in C?
how many key words availabel in c a) 28 b) 31 c) 32
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
Where register variables are stored in c?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
Create a simple code fragment that will swap the values of two variables num1 and num2.