C Language MCQ - English
Who is father of C Language?
Home | Discussion ForumWho is father of C Language?
Bjarne Stroustrup
James A. Gosling
Dennis Ritchie
Dr. E.F. Codd
Answer : A
View More Related Question
1) A program written in mnemonics is called _________ program.
2) A ___________ symbol is represented by a circle and a letter or digit placed within the circle.
3) Which of the following special symbol allowed in a variable name?
4) 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
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);