What is the output for the below:
#include <stdio.h>
int main()
{
    char a = 30;
    char b = 40;
    char c = 10;
    char d = (a * b) / c;
    printf ("%d ", d);
    return 0;
}
Options:
a)  120
b)  132
c)   110
d)  None of the above

Posted on by