Answer Posted / ashish
A structure is a collection of variables under a single name.
These variables can be of different types, and each has a name
which is used to select it from the structure. A structure is
a convenient way of grouping several pieces of related
information together.
A structure can be defined as a new named type, thus extending
the number of available types. It can use other structures,
arrays or pointers as some of its members, though this can get
complicated unless you are careful.
Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is multidimensional arrays
What is the use of parallelize in spark?
What does static variable mean in c?
What is a const pointer?
Explain what will the preprocessor do for a program?
what is reason of your company position's in india no. 1.
Do you know the use of fflush() function?
Is c is a middle level language?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Can static variables be declared in a header file?
What does 2n 4c mean?
Where is c used?
What are c identifiers?
Is it better to use malloc() or calloc()?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping