#include <stdio.h> int main(void) { char name[64] = ""; printf("What's your name?\n"); scanf("%s", name); // 用%s讀入字串,因為name 是一連串的記憶體空間, ...
確定! 回上一頁