c
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
#include int main() { int a=(1,2,3); int b=(3,2,1); for(; a>0; a--) for(; b<3; b++); printf("%d ", a*b); return 0; } output of this twister..??
-
#include int main() { int a=(1,2,3); int b=(3,2,1); for(; a>0; a--) for(; b<3; b++); printf("%d ", a*b); return 0; } output of this twister..??
-
#include int main() { int a=(1,2,3); int b=(3,2,1); for(; a>0; a--) for(; b<3; b++); printf("%d ", a*b); return 0; } output of this twister..??
You have already posted this in QA: #include <stdio.h> int main() { int a=(1, 2, 3); int b=(3, 2, 1); for(; a>0; a--) for(; b<3; b++); printf("%d ", a*b); return 0; }[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer