summaryrefslogtreecommitdiff
path: root/wk5/lect/temp.c
blob: 6c83fc4f3143065c731f4df5042b1312ab5edf6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <cs50.h>
#include <ctype.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

typedef struct node
{
    int number;
    struct node *next;
} node;

int main(void)
{
    node *n = malloc(sizeof(node));
    n->number = 1;
    n->next = NULL;
    list = n;

    node *n = malloc(sizeof(node));
    n->number = 2;
    n->next = list;

}