C examples for Data Type:int
Operator precedence test between sum and product
#include <stdio.h> int main(void) { int top, score; /*from w w w . j a v a2 s .c om*/ top = score = -(2 + 5) * 6 + (4 + 3 * (2 + 3)); printf("top = %d, score = %d\n", top, score); return 0; }