Search posts, tags, users, and pages
Kaustubh Kulkarni
Coder, Data Enthusiast, Teacher
#include<stdio.h> int main() { int i=10; switch(i);//does nothing switch(i){ printf("Inside switch"); } return 0; } #include<stdio.h> int main() { int i=10; switch(i);//does nothing switch(i){//does nothi...
No responses yet.