Predict the output of the following code
#include stdio.h

int main() {
int a=1, b=2, c=3;
switch(a+b*c){
case 9:printf("wow");
break;
case 5+2:printf("good");
break;
default:printf("thank you");
}

return 0;
}

Posted on by