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