0
#include <stdio.h>/*void fun(int*, int*);*/ int main(){ int i=5; for(; i<=5;i=i*i); i--; printf("%d",i); return 0; }
how to solve it.
1 Answer
- 1
Vrushabh Dhanraj Lewade
There is a Semicolon after for loop so statement will break there and i will be 25 but after i-- it will print 24.
So what output do you expect?