Computer Science, asked by Muffy4399, 3 days ago

Write the introduction of structure in c++

Answers

Answered by Malluponnu
0

Answer:

Then inside the curly braces, you can declare one or more members (declare variables inside curly braces) of that structure. For example: struct Person { char name[50]; int age; float salary; }; Here a structure person is defined which has three members: name , age and salary .

Explanation:

please mark me as brainlest

Similar questions