Computer Science, asked by sanketpha8055, 1 month ago

11. Consider the following recursive C function. Find the number of times that print statement will be executed
following program for the given input "mysql"
include <stdio.h>
void abocharºs)
if(s[0] "0)
return;
}
abc(s+1),
abc(s+1);
printf("%c"s[0]);
1
int main() {
abe("mysql");
return 0;
Output:​

Answers

Answered by avinav170
1

Answer:

what is this I don't understand

Similar questions