so this is my code for creating and printing a linked list. I wrote this code in atom ide but when i run the code there is a problem with asking input as shown in output below.
#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
typedef struct node {
int data;
struct node *next;
};
struct node * createl(int n);
void printlist(struct node* head2);
int main() {
struct node *mainhead;
int n;
printf("Enter the number of nodes : " );
scanf("%d",&n );
mainhead=createl(n);
printlist(mainhead);
getch();
return 0;
}
void printlist(struct node * head2)
{
struct node *ptr;
ptr=head2;
printf("\nLinked List : \n" );
while (ptr!=NULL) {
printf("%d => ",ptr->data);
ptr=ptr->next;
}
}
struct node * createl(int n)
{
struct node *head=NULL,*iso=NULL,*p=NULL;
int i=0;
while(i<n){
setbuf(stdout,NULL);
iso=(struct node*)malloc(sizeof(struct node));
printf("\nEnter data in node no. %d :",i+1);
scanf("%d",&(iso->data));
iso->next=NULL;
if (head=NULL)
{
head=iso;
} else {
p=head;
while (p->next!=NULL) {
p=p->next;
}
p->next=iso;
}
i++;
}
return head;
}
The expected Output should be:
Enter number of node : 5
Enter data in node no 1 : 1
Enter data in node no 2 : 2
Enter data in node no 3 : 3
Enter data in node no 4 : 4
Enter data in node no 5 : 5
Linked List : 1 => 2 => 3 => 4 => 5
But the actual output it shows is :
Enter the number of nodes : 4
Enter data in node no. 1 : 1
program ends