Write the output of the following code
Attachments:
Answers
Answered by
0
Answer:
#include <stdio.h>
int main()
{
int val = 1;
do{
val++;
++val;
}while(val++>;25);
printf(“%d\n”,val);
return 0;
}
Explanation:
Similar questions