#include <stdio.h> int main() { int i,j; for(i=0;i<2;i++){ for(j=0;j<2;j++){ printf("i:%d,j:%d\n",i,j); } }}
Standard input is empty
i:0,j:0 i:0,j:1 i:1,j:0 i:1,j:1
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!