2017-08-10 18 views

答えて

2

それを試してみてください。

# include <stdio.h> 

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

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

リトルリマインダー:https://stackoverflow.com/help/someone-answers、答えはあなたのために良好であれば:) –

関連する問題