Name the language in which the compiler of "c" in written?
Answer Posted / pappu kumar sharma
an ANSI type of compiler if you type in the name of a file
that hold C source
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Are the variables argc and argv are local to main?
Are pointers really faster than arrays?
Differentiate between a structure and a union.
What are the __date__ and __time__ preprocessor commands?
What is a nested formula?
Where static variables are stored in c?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain b+ tree?
write a program to print data of 5 five students with structures?
Explain a file operation in C with an example.
Do you know what are the properties of union in c?
Can include files be nested?
What are the advantages and disadvantages of c language?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none