Topic: C Programming Arrays
Answers to Common Questions
Why array is needed in c programming?
To store multiple data. For example the program's command-line arguments are in array-elements argv[1], argv[2], ... argv[argc-1] Read More »
Source: http://wiki.answers.com/Q/Why_array_is_needed_in_c_programming
What is an array in C-programming?
A type construction: one or more values with the same type and name. Read More »
Source: http://wiki.answers.com/Q/What_is_an_array_in_C-programming
What is array in c language program?
array:collection of homoegenois elements is called array Array is a data structure that allows us to store similar data types in one variable name. Read more: http://thetechnofreaks.com/2011/09/23/10-introduction-to-arrays/#ixzz1YuJQhkqZ Read More »
Source: http://wiki.answers.com/Q/What_is_array_in_c_language_program
Answers to Other Common Questions
Answer array:collection of homoegenois elements is called array Read More »
Source: http://wiki.answers.com/Q/Array+in+c+programming
An integer array consists of only integer numbers, for instance, if you have the array of size 5 with interger type date int_array[5] it means that your first element int_array[0] is an integer number like 1, or 15 and so on. The same is tr... Read More »
Source: http://wiki.answers.com/Q/What_is_integer_array_in_c_programming
C programming describes the task of writing computer applications based upon the C programming language. The C programming language is largely based upon mathematical constructs, and requires considerable training in order to master. Read More »
Source: http://answers.ask.com/Computers/Programming/what_is_c_programmin...
Arrays allow to save the same type of data in an arranged matter. Also working with arrays to can make your program faster. Read More »
Source: http://wiki.answers.com/Q/What_is_the_importance_of_array_in_c_pl...
the address of variable (pointer) that contains array Read More »
Source: http://wiki.answers.com/Q/What_is_the_base_address_of_an_array_in...
Two types Single dimention Multi dimentional Read More »
Source: http://wiki.answers.com/Q/How_many_types_of_array_in_c_programmin...
eg: void foo (char par []) { ... } void bar (void) { char var [33]; foo (var); /* or: foo (&var[0]); */ } Read More »
Source: http://wiki.answers.com/Q/How_to_pass_an_array_to_a_function_in_c...
Want A Personal Answer?
1,016,153 people are answering.
About - Privacy - AskEraser - Advertise - Careers - Ask Blog - iPhone - Android - Help - Feedback ©2012 Ask.com