Sunday, March 7, 2021

code for creating a node for a linked list

 typedef struct node

{

        int number;

        struct node *next;

}node;



source: harvard cs50, david malan

No comments:

Post a Comment