Q:
Define Structure in C++.?
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]
};
View answer
Workspace
Report Error
Discuss