char str1[ ] = "Hello" ; char str2[10] ; char *s = "Hey" ; char *q ; str2 = str1 ; /* error */ q = s ; /* works */
是C中的内置财产还是存在某种原因?如果无法分配数组,为什么还要分配包含数组的结构?
c pointers
c ×1
pointers ×1