Learn and practice your skills with our MCQ question answers to improve your knowledge. MCQs list
Start Practice with MCQsQuizack 10 minutes test will assess your knowledge and give you comprehensive results along feedback.
Start QuizDownload Free C Programming MCQ questions answers PDF to practice and learn while are offline.
Download PDF
Used by 100s of Jobseekers and students
Focused questions for skill assessment
Premium questions with correct answers
0
2
1
Answer:
1
What is the output of the following program? int main () { int foo = 1; do{ printf("%d ", foo); foo++; }while( foo <= 10 ) return 0; }
1 2 3 4 5 6 7 8 9 10
1 1 1 1 1 1 1 1 1 1
The program will not execute due to an error
Answer:
The program will not execute due to an error