Re: [algogeeks] difference btw int *a[] and int (*a)[]

2011-11-14 Thread DIPANKAR DUTTA
Hey..there are a simple way to convert this type of expression into English. int *a[] : 'a' is an array of pointer to integer.. i.e : integer-pointer array int (*a)[] : 'a' is a pointer to a array that contains integers : ie pointer to an integer array.. see below how it derived..: int

Re: [algogeeks] difference btw int *a[] and int (*a)[]

2011-11-13 Thread sumit mahamuni
@anup: Dude u missed the second its int (*a)[] not pointer to function its the pointer to integer array On Mon, Nov 14, 2011 at 7:00 AM, Anup Ghatage wrote: > First is an array of pointers to integers. > Second is a pointer to a function that returns an integer. > > On Mon, Nov 14, 2011 at 12:11

Re: [algogeeks] difference btw int *a[] and int (*a)[]

2011-11-13 Thread sumit mahamuni
hi, one is the array of integer pointers and the other is pointer to integer array. On Mon, Nov 14, 2011 at 12:11 AM, rj7 wrote: > Could someone pls tell me the difference between int *a[] and int (*a) > [] > > -- > You received this message because you are subscribed to the Google Groups >

Re: [algogeeks] difference btw int *a[] and int (*a)[]

2011-11-13 Thread Anup Ghatage
First is an array of pointers to integers. Second is a pointer to a function that returns an integer. On Mon, Nov 14, 2011 at 12:11 AM, rj7 wrote: > Could someone pls tell me the difference between int *a[] and int (*a) > [] > > -- > You received this message because you are subscribed to the G

[algogeeks] difference btw int *a[] and int (*a)[]

2011-11-13 Thread rj7
Could someone pls tell me the difference between int *a[] and int (*a) [] -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogee