Posts

Showing posts with the label DATA STRUCTURE

DATA STRUCTURE Programs

Image
                                  Drive link given below 1. Write a program to assign data to members of a structure variable and display using  C ++ . #include <iostream> using namespace std ; struct stu_info {     string name ;     int id ;         struct marks         {             int midavg ;             int external ;         } m ; } s [ 2 ]; void insert () {     int i ;     for ( i = 0 ; i < 2 ; i ++)     {         cout << "Enter name-" ;         cin >> s [ i ]. name ;         cout << "enter Student id no.-" ;         cin >> s [ i ]. id ;         cout << "midavg m...