#36114: C 程式解答


Tom951121 (Tom)

學校 : 國立中正大學
編號 : 80710
來源 : [140.123.147.230]
最後登入時間 :
2023-10-20 20:26:55

include <stdio.h>
int main(void){
    char chptr[1024];// 使用1024*1 bytes.可以用指標
    scanf("%s",chptr);//沒有要預防空格,不須用fgets.
    printf("hello, %s",chptr);//output
}