标签: string pointers
我找不到如何使其正确 - 请帮忙。
#include<stdio.h> main(void) { char *string="Hello!World"; while(string){ putchar(string); } }