what is array?

Answer Posted / shikha

array is a homogeneous and similar data type.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you convert integers to binary or hexadecimal?

622


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1962


What is the use of ?

628


In C programming, how do you insert quote characters (‘ and “) into the output screen?

898


What is table lookup in c?

633






What is a sequential access file?

650


What is structure packing in c?

612


Why c is called procedure oriented language?

582


Discuss the function of conditional operator, size of operator and comma operator with examples.

682


How do you redirect a standard stream?

628


What is the difference between a function and a method in c?

565


If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..

1598


how to count no of words,characters,lines in a paragraph.

3909


What is the difference between arrays and pointers?

638


How to find a missed value, if you want to store 100 values in a 99 sized array?

821