Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is array?

Answer Posted / gopi

An Array is a group of elements in a different datatype

Is This Answer Correct ?    11 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

1354


One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.

2581


What does it mean when a pointer is used in an if statement?

1058


Where can I get an ansi-compatible lint?

1098


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

1268


Compare array data type to pointer data type

964


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

1323


What is the basic structure of c?

1008


What are the different file extensions involved when programming in C?

1201


What is strcmp in c?

1013


What does c mean before a date?

1097


What is the difference between void main and main in c?

1093


What is the right type to use for boolean values in c? Is there a standard type?

963


writ a program to compare using strcmp VIVA and viva with its output.

1974


How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?

16583