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