#include <unistd.h>
#include <stdio.h>
void print(char *str)
{
if (*str)
{
//print(str + 1);
write (1, str, 1);
print(str + 1);
}
}
int main(int argc, int *argv[])
{
char str[] = "aissam";
/*if (argc == 1)
{
write ()
}*/
print(str);
//print("\n");
print();
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: