You are not logged in.
- Topics: Active | Unanswered
Pages:: 1
#1 2017-07-31 07:01:35
C / C++ Programming Language Quiz Question.
Programming Languages Quizzes C / C++ Programming Language
Question:
Which of the following while clause will stop the loop when the value in the age variable is less than the number 0?
Option A):
while (age >= 0);
Option B):
while age >= 0;
Option C):
while (age >= 0)
Option D):
while (age < 0)
Option E):
while age < 0
Correct Answer is Option C):
while (age >= 0)
Offline
2017-07-31 07:01:35
- Advertisement
- Ads By Google
Re: C / C++ Programming Language Quiz Question.
\n