C Language MCQ - English
C Language developed at _________?
Home | Discussion ForumC Language developed at _________?
AT & T's Bell Laboratories of USA in 1972
AT & T's Bell Laboratories of USA in 1970
Sun Microsystems in 1973
Cambridge University in 1972
Answer : A
View More Related Question
1) What will be printed after execution of the following program code?
main()
{
printf("\\nab");
printf("\\bsi");
printf("\\rha");
}
2) Which is the only function all C programs must contain?
3) The mapping from assembly language instructions into machine language instruction is:
4) A program which translates a high-level language program into a machine language program is called
5) What number would be shown on the screen after the following statements of C are executed?
char ch;
int i;
ch = 'G';
i = ch-'A';
printf("%d", i);