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