diff --git a/C++/60.cpp b/C++/60.cpp new file mode 100644 index 0000000..c3201bf --- /dev/null +++ b/C++/60.cpp @@ -0,0 +1,28 @@ +#include +using namespace std; + +struct student +{ + char name[50]; + int roll; + float marks; +} s[10]; + +int main() +{ + cout<<"Enter information of students: "<>s[i].name; + + cout<<"Enter marks: "; + cin>>s[i].marks; + + cout<