Computer Science, asked by pashaaftab449, 3 months ago

how to declare and initialize structure​

Answers

Answered by ps1666520
1

Answer:

Means, you can initialize a structure to some default value during its variable declaration. Example: // Declare and initialize structure variable struct student stu1 = { "Pankaj", 12, 79.5f }; Note: The values for the value initialized structure should match the order in which structure members are declared

Answered by prakhyatraj
2

Answer:

Means, you can initialize a structure to some default value during its variable declaration. Example: // Declare and initialize structure variable struct student stu1 = { "Pankaj", 12, 79.5f }; Note: The values for the value initialized structure should match the order in which structure members are declared

Similar questions