#include <stdio.h>
int main()
{
int a, b = 0;
a = b ? 50 : 150; printf("Val = %d\n", a); return 0;
}
References: C From Theory