C Language MCQ - English
C programs are converted into machine language with the help of
An Editor
A compiler
An operating system
None of these.
Answer : B
View More Related Question
1) Binary number uses only ________ digits.
2) A translator which reads an entire program written in high-level and convert it into machine language code is:
3) A C variable cannot start with
4) 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
5) Find the output of the following program.
void main()
{
int i=01289;
printf("%d", i);
}