3) void main() { int x=10; (x<0) ? (int a = 100) : (int a=1000); printf(ā%dā,a); }
10
1000
error
none of this