A study-log Blog for Computer Science,algorithms and puzzles. Discussions are most welcome :-)
void print_reverse(char* str) { if(*str=='\0')return; else print_reverse(str+1) putchar(*str); }
No comments:
Post a Comment