#include stdio.h#define VAL 3 * (2 + 6)void solve() {int a = 10 + VAL;printf("%d", a);}int main() {solve();return 0;}
#include stdio.hWhat is the output of the following code?void main(){int x = 10;int y = x++ + 20;printf("%d,%d",x,y);return 0;}