fork(5) download
  1. #include"stdio.h"
  2. main()
  3. { int s,t,A=10;
  4. double B=6;
  5. s=sizeof(A);
  6. t=sizeof(B);
  7. printf("%d,%d\n",s,t); }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
4,8