关于'\0',0,NULL,EOF的一些疑问
郁闷了....下面这段代码中“*”换成 '\0',0,NULL,EOF 皆可,只是EOF的话会有些异样....头大啊头大...
程序代码:
#include <stdio.h> int main (void){ char str [280]; int i; gets (str); for (i = 0; str [i] != *; i += 1) printf ("%c", str [i]); getch (); return 0; }
[ 本帖最后由 pycansi 于 2012-7-28 12:26 编辑 ]