#include <iostream>
using namespace std;

struct node{
    int data;
    struct node* link;
};
int main()
{
    struct node* head = new node;
    
    head ->data=45;
    head ->link=NULL;
    
    cout<< "new node value is "<< head ->data;
}