Sorry! Posting Assignment is allowed only for commercial accounts.
#include stdio.hint main(){int x = 2, y = 2;x /= x / y;printf(%d\n, x);return 0;}Predict the output?
#includestdio.hint main(){ int a=250; printf("%1d\n", a); return 0;}
#include stdio.hint main(){int i = 3;printf("%d", (++i)++);return 0;}