The general form of declaration of string variable is: char city[size]; //Static Memory Allocation char *city = (char*) malloc (sizeof(char) * size); // ...
確定! 回上一頁