#include <iostream>
using namespace std;
int main()
{
char* name = "Raj"; //can store a sequence of characters.
const char* school = "oxford";
//school[0] = 'O'; //gives runtime error. We can't modify it.
cout << name<<" "<<school;
return 0;
}