+ 1
What is the output of this code?
int main(){ int c=1; switch(c){ case 1: printf("1"); case 2: printf("2"); case 3: printf("3");}return 0; }
2 Réponses
+ 9
You can try running it in code playground to get the answer. Follow the community guidelines.
https://www.sololearn.com/discuss/1316935/?ref=app
+ 1
Thank you