Wednesday 1 December 2010

What is the correct syntax to declare an array of size 10 of int data type?

► int [10] name ;
► name[10] int ;
int name[10] ;
► int name[] ;

No comments:

Post a Comment