#include<stdio.h> #incldue<stdlib.h> struct node{ int data; struct node*next; }; int main() { struct node*start=NULL; start=(struct node*)malloc(sizeof(struct node)); start->data=10; start->next=NULL; return 0; }