Linked List C Program
Linked List C Program
***************************************************************************
***
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
***************************************************************************
****/
#include<stdio.h>
#include<stdlib.h>
struct node{
int data;
struct node *next;
};
int main()
{
int i, n, num;
nnode->data = num;
nnode->next = NULL;
temp->next = nnode;
temp = temp->next;
}
while (start!=NULL)
{
printf(" Data = %d\n", start->data);
start = start->next;
}