#include void rs( const char *s ){ if ( *s ) { rs( s+1 ); printf("%c",*s ); }}int main(){ const char *s="hello"; rs(s); printf("\n"); return 0;}