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 |
why integer range between -327680to+32767
Did c have any year 2000 problems?
What is LINKED LIST? How can you access the last element in a linked list?
Write a pro-gramme to determine whether the number is even or odd?
What is function prototype in c with example?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is array of structure in c programming?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
who is the founder of c
19 Answers College School Exams Tests, HP,
Is null a keyword in c?
What is function and its example?