fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int x;
  6. x=10;
  7. printf("x= %d", x);
  8. int j;
  9. j=11;
  10. printf("\nj= %d", j);
  11. return 0;
  12. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
x= 10
j= 11