Skip to main content

Popular posts from this blog

CS601 Assignment no 1

                 CS601   Assignment No 1                  Solution Spring 2021                 Last date 19 May , 2021 SOLUTION FILE Download File PURPOSE OF VUPORTAL865.COM Virtual university is Providing quality of Education in Pakistan and Overseas too. Thousands of Students getting quality education. Virtual University of Pakistan is first university In Pakistan that providing online education to everyone in Pakistan. in this university online Education is easy and Affordable for everyone. Most students find trouble scheduling time for their assignments since the research work is a time-consuming activity. Even so, others find trouble writing their assignment due to a lack of writing skills. Such students need to worry no more since there are several available online assignment help ...

CS301 Assignment no1

        CS301 - Assignment   1   Solution   Spring   2021   #include <iostream> #include <string> #include <iostream> #include <string> #include <sstream> using namespace std; class node{ public: std::string name; short int coursecode; node* ptr; }; class student{ private: node* head; public: student(){ head = '\0'; } void insertStu(node**,node*); void newNode(); void showAll(int code); }; void student:: insertStu(node** head,node* newNode){ node* current; if(*head=='\0'){ *head=newNode; }else{ current=*head; } while(current->ptr !='\0'){ current=current->ptr; } newNode->ptr=current->ptr; current->ptr=newNode; cout<<endl; cout<<"student information save successfully "; } void student:: newNode()...