fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a=1,b=10,c=100;
  5. printf("%d\n",a);
  6. printf("%d\n",b);
  7. printf("%d\n",c);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
1
10
100