#36114: C 程式解答


Tom951121 (Tom)

學校 : 國立中正大學
編號 : 80710
來源 : [140.123.147.230]
最後登入時間 :
2023-10-20 20:26:55
a001. 哈囉 -- Brian Kernighan | From: [203.204.199.92] | 發表日期 : 2023-07-06 11:18

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

 
ZeroJudge Forum