I have next code
int a,b,c; b=1; c=36; a=b%c;
What does \"%\" operator mean?
is basic operator available in almost every language and generally known as modulo operator. it gives remainder as result.