0

Possible Duplicates:
Interpretation of int (*a)[3]
What does “char (*a)[12]” mean ?

i would really appreciate if you can explain with help of program

Community
  • 1
  • 1
guneesh
  • 9
  • 2
  • 4
    You don't really have a question here. What is `int (*a)[10]` in your code? What do you think it is—any ideas? What's the context of the code? Is there any particular reason you want to know? And just so this comment is also somewhat helpful, when trying to decipher C type declarations, [cdecl](http://cdecl.org/) is handy. – Antal Spector-Zabusky Jun 17 '10 at 08:39
  • http://stackoverflow.com/questions/1810083/c-pointers-pointing-to-an-array-of-fixed-size –  Jun 17 '10 at 08:41
  • and another one: http://stackoverflow.com/questions/3011972/what-does-char-a12-mean – Christoph Jun 17 '10 at 10:24

1 Answers1

8

It declares a as a pointer to an array of 10 ints.

sth
  • 222,467
  • 53
  • 283
  • 367
sepp2k
  • 363,768
  • 54
  • 674
  • 675
  • 3
    http://cdecl.ridiculousfish.com/ Someone posted this in a different thread, it is a marvelous tool :) – Bella Jun 17 '10 at 10:08