Hi,
This code causes the reversal of an array of characters using a recursive function.
#include <stdio.h>
void inv(char *string)
{
if(*string)
{
inv(string+1);
putchar(*string);
}
}
int main()
{
inv("kleber");
return 0;
}
Explaining:
int main ()
(
inv ( "linux"); / / when you call the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.