fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int A,B;
  6. printf("Enter two integer A&B : ");
  7. scanf("%d %d",&A,&B);
  8. printf("\nMod= %d\n",A%B);
  9. return 0;
  10. }
  11.  
  12.  
Success #stdin #stdout 0s 2172KB
stdin
Standard input is empty
stdout
Enter two integer A&B : 
Mod= -6964116