What will be the output of the following code snippet?
#include stdio.h
#define square(i) i * i
void solve() {
int ans = 184 / square(2);
printf("%d", ans);
}
int main() {
solve();
return 0;
}



Posted on by