0
9.4kviews
Write the output of the following code,
written 5.7 years ago by | • modified 5.7 years ago |
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
ADD COMMENT
EDIT
1 Answer