What will be output of the following program?
#include
void main()
{
int cnt = 5, a;
do {
a = cnt;
} while (cnt --);
printf ("%d\n", a);
Answers
Answered by
1
Answer:
the answer is 5sqaure
Similar questions