MCQs > IT & Programming > C Programming > How many times 'Upwork' gets printed? #include int main() { int x; for(x=-1;x<=10;x++) { if(x<5) continue; else break; printf('Upwork'); } return 0; }

C Programming MCQs

How many times "Upwork" gets printed? #include<stdio.h> int main() { int x; for(x=-1;x<=10;x++) { if(x<5) continue; else break; printf("Upwork"); } return 0; }

 

Answer

Correct Answer: 0 times

Explanation:

Note: This Question is unanswered, help us to find answer for this one

C Programming Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

C Programming Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it