We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d8bfe2 commit c75e9f2Copy full SHA for c75e9f2
data_structures/linked_list/stack_using_linked_lists.c
@@ -80,7 +80,7 @@ void pop(struct node *p)
80
81
void display(struct node *p)
82
{
83
- if (top == NULL)
+ if (top == NULL)
84
printf("stack is empty\n");
85
else
86
0 commit comments