Can someone explain me this . | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Can someone explain me this .

A structure is also called a composite or aggregate data type.

11th May 2021, 6:29 PM
NISHTHA
NISHTHA - avatar
7 Answers
+ 2
Composite means combined to. Aggregate means several are combined into single group or form. So synanimically it is also called composite or aggregate data type. .
11th May 2021, 7:21 PM
Jayakrishna 🇮🇳
11th May 2021, 7:28 PM
NISHTHA
NISHTHA - avatar
0
Can you specify more please?
11th May 2021, 6:32 PM
Dino Wun (Use the search bar plz!)
Dino Wun (Use the search bar plz!) - avatar
0
It is of c language structures
11th May 2021, 6:35 PM
NISHTHA
NISHTHA - avatar
0
Alright, In C programming, a struct (or structure) is a collection of variables (can be of different types) under a single name. Before you can create structure variables, you need to define its data type. To define a struct, the struct keyword is used.
11th May 2021, 6:39 PM
Dino Wun (Use the search bar plz!)
Dino Wun (Use the search bar plz!) - avatar
0
Yes .... But what about composite and aggregate data type
11th May 2021, 6:51 PM
NISHTHA
NISHTHA - avatar
0
struct is a keyword to form a structure. Eg: struct yahoo{ char author[30]; ..... ... }; int main(){ struct yahoo title; strcpy(title.author,"sololearn"); }
13th May 2021, 3:28 PM
pavan kumar
pavan kumar - avatar