modulo operator

PHOTO EMBED

Sun Sep 18 2022 14:05:54 GMT+0000 (Coordinated Universal Time)

Saved by @naveen_63833592 #c

#include<stdio.h>
#include<conio.h>
void main()
{
    int a,b,c,d;
    a=11;
    b=2;
    c=a%b;
    d=a/b;
    printf("reminder: %d \n",c);
    printf("quotient: %d",d);
}
content_copyCOPY