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