Skip to content

Instantly share code, notes, and snippets.

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct nodeList {
long value;
struct nodeList *next;
}NL, *PNL;
void inputNum(PNL nodeList) {