main函数递归

字符串反转程序:


#include <stdio.h>

main(int i)

{

(i = getchar() ) != 10 && main(i) ;

putchar(i);

return 0;

}

你可能感兴趣的:(main函数递归)