[ create a new paste ] login | about

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

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

int main()
{
	SANBAY sb;
	NhapSanBay(sb);
	XuatSanBay(sb);

	getch();
	return 0;
}


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


Create a new paste based on this one


Comments: