+ 2
What is the output?
switch(printf("hi-") case 1:printf("a");break; case 2:printf("b");break; case 3:printf("c");break; default:printf("default");
2 ответов
+ 2
printf returns length of printed string so output will be hi-c if you fix errors
+ 1
Thanks