Working of switch construct in c programming
In a switch construct ,why does the compiler doesn't show any error and skips the statements written within the cases like for example I write printf("hello"); in between case 1 and case 2 ,so why is there no error in this ,and how come the compiler skips this step
0