C Language MCQ - English
Which is the only function all C programs must contain?
start()
system()
main()
printf()
Answer : C
View More Related Question
1) The mapping from assembly language instructions into machine language instruction is:
2) Find the output of the following program.
void main()
{
int i=01289;
printf("%d", i);
}
3) Find the output of the following program.
void main()
{
int i=065, j=65;
printf("%d %d", i, j);
}
4) The process of removing bugs is known as ___________.
5) An algorithm is best described as:
A computer language
A step by step procedure for solving a problem
A branch of mathematics
None of the above
View Answer