what is the use of a array in c

Answer Posted / abeera amin

array are data structure in which identical data type are
stored.and have contiguous area of memory.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which is the memory area not included in C program? give the reason

1710


What is the advantage of using #define to declare a constant?

833


In a header file whether functions are declared or defined?

872


What is a const pointer in c?

860


An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode

834


What does the file stdio.h contain?

798


What is #define?

779


Explain how can I remove the trailing spaces from a string?

799


What is array of structure in c?

787


Explain what are compound statements?

803


How can I write functions that take a variable number of arguments?

837


Is it better to use a macro or a function?

880


Is null equal to 0 in sql?

861


What's a good way to check for "close enough" floating-point equality?

837


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5752