/*
https://[Log in to view URL]
https://[Log in to view URL]
*/


#include<iostream>
#include<string>

using namespace std;

int main(){
    int a;
    string b="hello ";
    string c="adarsh ";
    string full=b+c;
    cin>>a;
    cout<<full<<"my age is:"<<a;
}

/*
cout << food << "\n";

// Output the memory address of food (0x6dfed4)
cout << &food << "\n";

// Access the memory address of food and output its value (Pizza)
cout << *ptr << "\n";

// Change the value of the pointer
*ptr = "Hamburger";

// Output the new value of the pointer (Hamburger)
cout << *ptr << "\n";

// Output the new value of the food variable (Hamburger)
cout << food << "\n";
*/

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: