0
#include <iostream> using namespace std; int main() { int i=0; for(;i<5;i+=3){ i=i*i; }cout<<i; return 0; }
how output of this comes 12..can anyone explain?
1 Resposta
0
then 9 is also less Than 5..should this code run only 1 time
how output of this comes 12..can anyone explain?