void f(int i) {
int j=0;
switch(i) {
do {
case 0:continue;
case 1:break;
case 2: j++;
} while(++i<3)
default:j++;
}
printf("%i %i",i,j);
}
main() {
f(0);f(1),f(2),f(3);
}
Answers
Answered by
0
Answer:
its no answer received
Step-by-step explanation:
high quality
Similar questions
Math,
24 days ago
English,
24 days ago
English,
8 months ago
Computer Science,
8 months ago
Math,
8 months ago