View Code of Problem 3495

int mod(int a ,int b){
    int tmp = a / b;
    return a - b * tmp;
}

/*
Main.c:1: error: syntax error before '/' token
*/

Double click to view unformatted code.


Back to problem 3495