Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions linklist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ int main()
cout<<el;
break;
case 6:if(l.empty())
cout<<"\n\tLINKLIST IS EMPTY";
cout<<"\n\tLINKLIST IS EMPTY";
else
cout<<"\n\tLINKLIST IS NOT EMPTY";
break;
Expand All @@ -208,7 +208,7 @@ int main()
break;
}

cout<<"\n\n\tDO U WANT TO CONTINUE?";
cout<<"\n\n\tDO U WANT TO CONTINUE OR WANT TO EXIT?";
cin>>ch;
}while(ch=='Y'||ch=='y');
getch();
Expand Down