#include #include #include #include struct node{ int info; struct node*next; }*head,*p,*q,*temp; struct node * createmode() { temp=new(struct node); cout<<"enter info part"; cin>>temmp->info; temp->next=NULL; return(temp); } void insert_beg() { if(head==NULL) head=createmode(); else { temp=createmode(); temp->next=head; head=temp; } } void display() { cout<<"my list is"<next) cout<info<<" "; } void main() { int choice; cout<<"1.Insert at begin"<>choice; switch(choice) { case1:insert_beg();break; case2:display();break; case9:exit(); } }while(choice!=9); }