number in link list
I have this program in c which i ask user if how many numbers they want to have then i store it in a link list then print it. #include <stdio.h> #include <stdlib.h> struct node{ int data; struct node *link; }; void add_end(struct node **, int); int main(){ int n, m; printf(“How many numbers: … Read more