#include<iostream.h>
#include<conio.h>
main()
{
clrscr();
char string_1[]={"Government College Lahore"};
char string_2[]={'G','o','v','e','r','n','m','e','n','t',' ','C','o',
'l','l','e','g','e',' ','L','a','h','o','r','e','\0'};
char string_3[20]={'\0'};
char string_4[]={'H','e','l','l','o','!'};
cout<<"\n Enter the value of the sring_3 = ";
cin>>string_3;
cout<<"\n ******** Values of Strings ********"<<endl;
cout<<"\t Value of string_1 = "<<string_1<<endl;
cout<<"\t Value of string_2 = "<<string_2<<endl;
cout<<"\t Value of string_3 = "<<string_3<<endl;
cout<<"\t Value of string_4 = "<<string_4<<endl;
getch();
return 0;
}