2017 universities Ranking in Pakistan

Here are overall top universities of Pakistan.Some universities are at the top place in engineering fields but others are at Applied science, BA and in IT programs

Monday, 11 June 2018

Sorting String in Alphabetic Order ( whole stiring sentence)

The following program sort the whole string without OOP. No object is used in this program. Dynamic memory allocation is used.  This program can sort whole string sentence in alphabetic order. #include<iostream> #include<string> using namespace std; int main() {  string *p;  int n,i;  cout<<"Enter the size of dynamic memory allocation:"<<endl;  cin>>n;  int temp;   p=new string[n];    ...