2017-08-10 32 views

回答

2

試一下:

# include <stdio.h> 

void main(void) 
{ 
    char *string = "Hello!World"; 

    while (*string) { 
     putchar(*string++); 
    } 
} 
+0

小提醒:https://stackoverflow.com/help/someone-answers,如果答案是對你有好處:) –