structure of c++


Explain of lesson:
Form:
Struct Name…..of……struct{
Data type field1;
Data type field2;
………………
………………
Data type fieldn;
Note: For (Name….of….struct) it can input or no.
Exameple:


#include <iostream>
using namespace std;
struct student1{
char name[10];
int age;
char subject[10];

}student;
int main(){
cout<<"Please input your name:"; cin>>student.name;
cout<<"Please input your age:"; cin>>student.age;
cout<<"Please input you subject:"; cin>>student.subject;
cout<<"\nName:"<<student.name<<"\t Age:"<<student.age
<<"\t Subject:"<<student.subject;cout<<endl;
return 0;
}
Note:
- name of points (struct student1) and ({student;) shouldn't input the name the same. If we input the same the name, will it asks.
- cin>>student.age;
for (student) it is name of structure.
for (.) of student(.)age; this is file of char or int.
 Exercise:
Input of car:
- brane
- model
- year
- coutry
- number of Mikes
-----------------------------------------------
#include <iostream>
using namespace std;
struct car{
char brane[10], model[10], year[10], coutry[10];
int mikes;
}toyota;
int main(){
cout<<"Input Brane:"; cin>>toyota.brane;
cout<<"Input Model:"; cin>>toyota.model;
cout<<"Input Year:"; cin>>toyota.year;
cout<<"Input Country:"; cin>>toyota.coutry;
cout<<"Input Number of mikes:"; cin>>toyota.mikes;
cout<<"\nBrane:"<<toyota.brane<<"\t Model:"<<toyota.model
<<"\t year:"<<toyota.year<<"\t Country:"<<toyota.coutry
<<"\t Number of mikes:"<<toyota.mikes;cout<<endl;

return 0;
}

Post a Comment

0 Comments