[ create a new paste ] login | about

Link: http://codepad.org/KQD1Ns9E    [ raw code | output | fork ]

C++, pasted on Aug 28:
1
2
3
4
5
6
7
8
9
10
struct student
{
    char name[30], surname[30];
    int class_number;
    char class_letter;
    char favourite_lesson[30];
    
    student *next;

};


Output:
1
2
In function `_start':
undefined reference to `main'


Create a new paste based on this one


Comments: