Math, asked by hemanthraisers123, 3 months ago


#include <stdio.h>
void abc(char *s) {
if(s[0]='\0') {
return;
}
abc(s+1);
abc(s+1);
printf("%c",s[0]);
}
int main() {
abc("mysql");
return 0;​

Answers

Answered by prag12
1

Answer:

I may show error } missing

Answered by kolaguruprasad04
0

Step-by-step explanation:

of 00#include <stdio.h>

void abc(char *s) {

if(s[0] == '\0') {

return;

}

abc(s+1);

abc(s+1);

printf("%c",s[0]);

}

int main() {

abc("mysql");

return 0;

}#include <stdio.h>

void abc(char *s) {

if(s[0] == '\0') {

return;

}

abc(s+1);

abc(s+1);

printf("%c",s[0]);

}

int main() {

abc("mysql");

return 0;

}

Similar questions