#include <malloc.h> #include <stdio.h> struct Node { int data; Node *next; }; Node *head = (Node*)malloc(sizeof(Node)); int main() { head->next = NULL; return 0; }