Name the language in which the compiler of "c" in written?
Answers were Sorted based on User's Feedback
Answer / 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 |
Do you know what is the purpose of 'extern' keyword in a function declaration?
What is the use of getchar() function?
What is bubble sort in c?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
What do you mean by invalid pointer arithmetic?
What is structure padding & expalain wid example what is bit wise structure?
what is the coding of display the factorial of a number using array and function?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
What is the difference between procedural and functional programming?
How to get string length of given string in c?
Can we change the value of static variable in c?
Explain how can you tell whether a program was compiled using c versus c++?