what is structuer?

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


Please Help Members By Posting Answers For Below Questions

What is multidimensional arrays

890


What is the use of parallelize in spark?

803


What does static variable mean in c?

891


What is a const pointer?

837


Explain what will the preprocessor do for a program?

836


what is reason of your company position's in india no. 1.

2002


Do you know the use of fflush() function?

847


Is c is a middle level language?

837


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

2017


Can static variables be declared in a header file?

850


What does 2n 4c mean?

1012


Where is c used?

854


What are c identifiers?

875


Is it better to use malloc() or calloc()?

871


In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping

1229