-5
char array[2];
array = "h";
提供了以下錯誤:如何通過字符串的字符數組用C
error: incompatible types when assigning to type 'char[2]' from type 'char'
char array[2];
array[] = "h";
提供了以下警告:
warning: assignment makes integer from pointer without a cast
我嘗試這兩種方式傳遞值h到數組中,但我不能。我想知道問題是什麼。
謝謝。 *做什麼? – Luke 2014-09-06 14:07:35
'char *'將一個*指針*聲明爲一個字符(或多個字符)。它是C編程的基本組成部分之一;我會盡快通過一些指針教程,如:http://www.tutorialspoint.com/cprogramming/c_pointers.htm – 2014-09-06 14:08:46
是啊即時通訊:)謝謝! – Luke 2014-09-06 14:11:23