Answers for "struct in struct c++ example"

C
1

how to put a struct in another struct C

struct B {  // <-- declare before
  int number;
};
struct A {
 int data;
 B b; // <--- declare data member of `B`
 };
Posted by: Guest on May-08-2020
2

struct c++

struct Student
{
    string Nom;
    int Surn;
    int Age;
};
Posted by: Guest on September-17-2021
-1

c++ struct

#include<iostream>
#include<string>
using namespace std;
struct student
{
  char name [20];
int age;
float marks;
};
int main()
{
student s;
cout<<"enter student name : "<<endl;
cin>>s.name;
cout<<"enter age : "<<endl;
cin>>s.age;
cout<<"enter marks : "<<endl;
cin>>s.marks;
cout<<"***********************"<<endl;
cout<<"name : "<<s.name<<endl;
cout<<"age : "<<s.age<<endl;
cout<<"marks : "<<s.marks<<endl;
return 0;
}
Posted by: Guest on January-15-2021

Code answers related to "C"

Browse Popular Code Answers by Language