Execute the following code. /* SAMPLE OF C PROGRAM TO USE LINKED LIST AND ADDING ELEMENT OR NODE AT THE BEGINNING OF THE LINKED-LIST* / #include #include int main() { //declare the structure of a node struct Node { int data; struct Node *next; }; //declare other name for the struct Node typedef struct Node Node; Node *head, *curr, * newptr; //initialize head to NULL; head= NULL; //declare control variable and variable to receive input value int i, value;

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
icon
Concept explainers
Question
Execute the following code.
* SAMPLE OF C PROGRAM TO USE LINKED LIST AND ADDING ELEMENT OR NODE AT THE
BEGINNING OF THE LINKED-LIST*/
#include <stdio.h>
#include <stdlib.h>
int main ()
{
//declare the structure of a node
struct Node
{
int data;
struct Node *next;
};
//declare other name for the struct Node
typedef struct Node Node;
Node *head, *curr,
newptr;
//initialize head to NULL;
head= NULL;
//declare control variable and variable to receive input value
int i, value;
Transcribed Image Text:Execute the following code. * SAMPLE OF C PROGRAM TO USE LINKED LIST AND ADDING ELEMENT OR NODE AT THE BEGINNING OF THE LINKED-LIST*/ #include <stdio.h> #include <stdlib.h> int main () { //declare the structure of a node struct Node { int data; struct Node *next; }; //declare other name for the struct Node typedef struct Node Node; Node *head, *curr, newptr; //initialize head to NULL; head= NULL; //declare control variable and variable to receive input value int i, value;
//instruct user for input
printf ("\nEnter number to be inserted into linked list\n");
7/loop to prompt user to enter three values
for (i=0; i<3; i++){
printf("\nEnter a number: ");
scanf ("%d", &value);
newptr = (Node*) malloc (sizeof (Node)); //to create new node
newptr ->data = value; //assign value to data field
newptr -> next=NULL; //assign NULL to next pointer
if (head==NULL)
//if there are no existing node (s) in the linked
//list
{
head=newptr;
//the new node
//linked list
ес
es the first node in the
}
else
//otherwise (if there are node (s) already
{
//the new node will be inserted at the
//beginning,
//right before the existing first node
newptr->next=head;
head=newptr;
//head pointer will get the address of the new
node
}
}
printf("\n\nDisplay content of the linked list\n\n");
curr = head; //initiliaze current pointer similar to the head pointer
//using loop to access each node in the linked list
while (curr!= NULL)
printf ("\n%d", curr->data);
//printf("\n%d", curr->next);
curr = curr->next;
if (curr==NULL)
printf("\nNULL");
Transcribed Image Text://instruct user for input printf ("\nEnter number to be inserted into linked list\n"); 7/loop to prompt user to enter three values for (i=0; i<3; i++){ printf("\nEnter a number: "); scanf ("%d", &value); newptr = (Node*) malloc (sizeof (Node)); //to create new node newptr ->data = value; //assign value to data field newptr -> next=NULL; //assign NULL to next pointer if (head==NULL) //if there are no existing node (s) in the linked //list { head=newptr; //the new node //linked list ес es the first node in the } else //otherwise (if there are node (s) already { //the new node will be inserted at the //beginning, //right before the existing first node newptr->next=head; head=newptr; //head pointer will get the address of the new node } } printf("\n\nDisplay content of the linked list\n\n"); curr = head; //initiliaze current pointer similar to the head pointer //using loop to access each node in the linked list while (curr!= NULL) printf ("\n%d", curr->data); //printf("\n%d", curr->next); curr = curr->next; if (curr==NULL) printf("\nNULL");
Expert Solution
steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Types of Linked List
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education