Define Structure in C++.?

Correct Answer: The C++ programming technique allows defining user defined datatypes through structure The syntax to declare structure is as follows: struct student { char name[100] char address[250] };

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion