0
9.4kviews
Write the output of the following code,

Program

 #include <stdio.h>

int main()

{

int val = 1;

do{

val++;

++val;

}while(val++>;25);

printf(ā€œ%d\nā€,val);

return 0;

}

Subject : Structured Programming Approach

Title : Control Structures

Difficulty : Medium

1 Answer
0
145views

Output:

4
Please log in to add an answer.