Computer Science, asked by sangaran, 1 month ago

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

Answers

Answered by pradeepdivya149
0

Explanation:

जय जय संतोषी माता जय जय मां जय जय संतोषी माता जय जय मां न्यू सॉन्ग

Similar questions