name the language for writing c compiler?
Answer Posted / abhinav singh
Trans-mo-grifiers(TMG)
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Is it possible to pass an entire structure to functions?
What is meant by 'bit masking'?
How can I get back to the interactive keyboard if stdin is redirected?
What is typedef example?
What does %d do in c?
What is sizeof in c?
What is a void * in c?
What is a file descriptor in c?
What is the difference between formatted&unformatted i/o functions?
What is a char in c?
Why c is called a mid level programming language?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the c language function prototype?
Why does everyone say not to use gets?
What is a program flowchart and how does it help in writing a program?