char arr[] = "Hello World"; // array version char ptr* = "Hello World"; ... gets(arr); scanf("%s", arr); strcpy(arr, "new string"); arr[0] = 'R'; ...
確定! 回上一頁