C Language MCQ - English
Which is the only function all C programs must contain?
Home | Discussion ForumWhich is the only function all C programs must contain?
start()
system()
main()
printf()
Answer : C
View More Related Question
1) Which one of the following is not a valid identifier?
2) The language understood by a computer without translation is called:
3) Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?
rem = 3.14 % 2.1;
rem = modf(3.14, 2.1);
rem = fmod(3.14, 2.1);
Remainder cannot be obtain in floating point division.
View Answer
4) A ___________ symbol is represented by a circle and a letter or digit placed within the circle.
5) C was primarily developed as
System programming language
General purpose language
Data processing language
None of the above.
View Answer