Answer Posted / guest
A compiler is a software program which is used to compile
the program written in computer language to the normal
language and return the o/p to the user in normal form.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Why isnt any of this standardized in c?
code for find determinent of amatrix
what type of questions arrive in interview over c programming?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What is the difference between null pointer and wild pointer?
How do you sort filenames in a directory?
How to delete a node from linked list w/o using collectons?
write a c program in such a way that if we enter the today date the output should be next day's date.
What are the differences between Structures and Arrays?
Is there any possibility to create customized header file with c programming language?
Is flag a keyword in c?
what is uses of .net
What is an expression?
Can you apply link and association interchangeably?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply