What is output, if userVal is 5?
int x;
x = 100;
if (userval != 0) {
int tmpVal;
tmpVal = x / userval;
printf("%d", tmpVal);
}