2010-06-17 77 views
0

可能重複:
Interpretation of int (*a)[3]
What does 「char (*a)[12]」 mean ?什麼呢INT(*一)[10]

我真的很感激,如果你可以用程序的幫助說明

+4

這裏你沒有問題。代碼中的int(* a)[10]是什麼?你認爲這是什麼 - 任何想法?代碼的上下文是什麼?你有什麼特別的理由想知道嗎?正因如此,這個註釋在嘗試破譯C類型聲明時也有些幫助,[cdecl](http://cdecl.org/)很方便。 – 2010-06-17 08:39:37

+0

http://stackoverflow.com/questions/1810083/c-pointers-pointing-to-an-array-of-fixed-size – 2010-06-17 08:41:09

+0

和另一個:http://stackoverflow.com/questions/3011972/what-does -char-a12-mean – Christoph 2010-06-17 10:24:02

回答

8

它聲明a作爲指向10個整數的指針。

+3

http://cdecl.ridiculousfish.com/ 有人在不同的線程中發佈了這個,它是一個了不起的工具:) – DRL 2010-06-17 10:08:22