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 |
how many errors in c explain deply
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
What is line in c preprocessor?
What is void c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
Is there any possibility to create customized header file with c programming language?
Program to find the absolute value of given integer using Conditional Operators
What are the key features in c programming language?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
compute the nth mumber in the fibonacci sequence?
10 Answers Canon, HPL, Satyam, TCS,
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }