예제 #1
0
파일: test.c 프로젝트: liu734/C-programming
void PushTest() {
struct node* head = BuildTwoThree();// suppose this returns the list {2, 3}
Push(&head, 1); // note the &
Push(&head, 13);
// head is now the list {13, 1, 2, 3}
}
예제 #2
0
파일: demo.c 프로젝트: leechannl/learning
void PushTest(){
    struct node* head = BuildTwoThree();

    Push(&head, 1);
    Push(&head, 13);
}