[ create a new paste ] login | about

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

C, pasted on Jun 20:
1
2
3
4
5
6
7
8
9
10
11
#include"SinhVien.h"

int main()
{
	SINHVIEN sv;
	Nhap(sv);
	Xuat(sv);

	getch();
	return 0;
}


Output:
1
2
3
4
5
6
7
Line 20: error: SinhVien.h: No such file or directory
In function 'main':
Line 6: error: 'SINHVIEN' undeclared (first use in this function)
Line 6: error: (Each undeclared identifier is reported only once
Line 6: error: for each function it appears in.)
Line 6: error: expected ';' before 'sv'
Line 7: error: 'sv' undeclared (first use in this function)


Create a new paste based on this one


Comments: