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