#include<iostream>

using namespace std;

void Function(){
    cout<<"Anup Tirkey is a Mechanical Engineer.\n";
}

void Function1(){
    cout<<"Anup Tirkey is a part CIViL officer.\n";
}

class MyCar{
      public:
             string s1;
};
int main(){
    
    cout<<"hello world.\n";

    Function();
    Function1();

    //object define

    MyCar c1;
    c1.s1 = "Anup Tirkey , owner, Hyundai Car.\n";

    cout<<c1.s1<<"\n";
    
    return 0;
}

Embed on website

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