what is array?

Answer Posted / muhammad junaid malik

Array is a collection of elements that have different data types but are stored in a same header name

Is This Answer Correct ?    6 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

State the difference between realloc and free.

628


What is the full form of getch?

581


What is the use of linkage in c language?

612


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

1794


What is gets() function?

667






Why is it important to memset a variable, immediately after allocating memory to it ?

1551


Is there a way to jump out of a function or functions?

632


Write a simple code fragment that will check if a number is positive or negative.

705


How can I find the modification date and time of a file?

598


What is the difference between typedef struct and struct?

594


write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.

14958


Write a program to print ASCII code for a given digit.

682


what is use of malloc and calloc?

1381


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); } }

1954


List a few unconditional control statement in c.

557