fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. printf("%d\n",4562/10);
  6.  
  7. printf("%d",4562%10);
  8.  
  9.  
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
456
2