What will be the output of the program?
#include<stdio.h>
void solve() 
{
    int a = 8;
    int res = a++ + ++a + a-- + --a;
    printf("%d", res);
}
int main() {
 solve();
 return 0;
}



A. 33
B. 34
C. 36
D. 35

Posted on by