C Language MCQ - English
When we mention the prototype of a function?
Defining
Declaring
Prototyping
Calling
Answer : B
View More Related Question
1) C compiler traps:
2) Which one of the following statements is incorrect?
A compiler compiles the source program.
An assembler takes an assembly program as input
A compiler does the same type of function as interpreter
None of the above
View Answer
3) A compiler is:
A machine-independent and OS-independent
Machine-dependent and OS-dependent
Machine-dependent and OS-independent
Machine-independent and OS-dependent
View Answer
4) C programs are converted into machine language with the help of
5) Find the output of the following program.
void main()
{
int i=065, j=65;
printf("%d %d", i, j);
}