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 does a run-time "null pointer assignment" error mean?
What is the value of uninitialized variable in c?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
What is ponter?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
write a code for large nos multilication (upto 200 digits)
Is c# a good language?
What is || operator and how does it function in a program?
What is NULL pointer?
What's a good way to check for "close enough" floating-point equality?
How can I implement a delay, or time a users response, with sub-second resolution?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above