Computer Science, asked by MASTERS0, 9 months ago

Write the output of the following code

Attachments:

Answers

Answered by LittleMagic721
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