I am new to C and need help. My code is the following.
#include #include void main() { int suite=2; switch(suit
You switch on value 2, which matches default case in switch statement, so it prints "hello" and then the last line prints "I thought somebody".
switch
2
default