Question: 2. Write the output of the code below: (5 marks) #include int main(){ } for(int c = 1; c < 50; c *= 5

 2. Write the output of the code below: (5 marks) #include int main() { } for(int c = 1; c < 50; c *= 5 ) 

2. Write the output of the code below: (5 marks) #include int main(){ } for(int c = 1; c < 50; c *= 5 ) printf( "%d\t", c ); printf(" Done" ); return 0; (OUTPUT) Page 2 of 3

Step by Step Solution

3.41 Rating (157 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

The image contains C code with a for loop that is designed to iterate from 1 to less than 50 w... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!