#include <iostream>

using namespace std;

int main(){

    struct{
        int num;
        string car;
    }mystructure;

    mystructure.num = 1993;
    mystructure.car = "Hyundai";

    cout<<mystructure.num<< " " <<mystructure.car<< "\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: