[ create a new paste ] login | about

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

C, pasted on Jun 20:
1
2
3
4
5
6
7
8
9
10
11
12
#include "ChuyenBay.h"
#include <string.h>
#define MAX 100
struct SanBay 
{
	int n; // so luong cac chuyen bay
	CHUYENBAY DanhSachChuyenBay[MAX];
};
typedef struct SanBay SANBAY;

void NhapSanBay(SANBAY &);
void XuatSanBay(SANBAY);


Output:
1
2
3
Line 22: error: ChuyenBay.h: No such file or directory
Line 7: error: expected specifier-qualifier-list before 'CHUYENBAY'
Line 11: error: expected ';', ',' or ')' before '&' token


Create a new paste based on this one


Comments: