I'm writing a program and have been stuck in this part for quite some time.
int y;
y = 111 % pow(10,2);
printf("%d",y);
The error shown is invalid operands of types 'int' and 'double' to binary 'operator%'.
Is there any workaround to this (i.e. using the pow() function)?