what is array?
Answers were Sorted based on User's Feedback
Answer / jiten patel
Array is a group of entity which stores similar types of data.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / abhi
array is such static collection of data which store data
member of same datatype
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nayanprakash
Arry is a collection of similar data type.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dev
array is a reference variable which stores similar type of data
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / balu
array is a collection of variables with similar data type;
syntax: data type array name[size];
example: int a[5];
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raj
Pointers and arrays are inseparably related, but they are
not synonyms for each other. Starting with this post, we
will look into one-dimensional array, it’s storage pattern,
how the array elements are accessed. And lastly, we look
into a new feature of C99: the variable length array.
Is This Answer Correct ? | 0 Yes | 2 No |
How will you divide two numbers in a MACRO?
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
Derive the complexity expression for AVL tree?
What is C language ?
1. Write a c pgm to print 1 to 100 without using loops. 2. Write a c pgm for leap year 3. Write a c pgm fibbonacci series,factorial 4. Write a c pgm count no of lines , blanks, tabs in a para(File concept) 5. Write a c pgm to print the letter as per given condition i.e.. if u give 4 out put should b 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 6.how do get the o/p in number from 1 to 100 in the screen without using control statement? 7. who do u print the word "hello world" without using "printf" statement? 8. write sql program to get the detail of student in a class? Definitions: structure union arrays linkedlist macros directives difference b/w pre processorsDiffrence: 1.Constructors and destructors 2.Structure and Union 3.Array and Lists 4.pre processor... 5. Privillages in C++ 6.structure and union 7.break and continue 8.while and dowhile Pgm..
What are the advantages of using macro in c language?
Calculate 1*2*3*____*n using recursive function??
how to find string length wihtout using c function?
What is the use of f in c?
What is the difference between void main() and void main (void) give example programme?