What is the output of the following snippet code
#include stdio.h
#define sol 3 * (2 + 6)
void solve() {
int a = 25 + sol;
printf("%d", a);
}
int main() {
solve();
return 0;
}

Posted on by