[ create a new paste ] login | about

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

C, pasted on Jun 20:
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once   // Tranh dung do thu vien
#include<stdio.h>
#include<conio.h>

struct SinhVien
{
	char MaSo[30], HoTen[30];
	float Diem;
};
typedef struct SinhVien SINHVIEN;

void Nhap(SINHVIEN &);
void Xuat(SINHVIEN);


Output:
1
2
3
Line 8: warning: #pragma once in main file
Line 17: error: conio.h: No such file or directory
Line 12: error: expected ';', ',' or ')' before '&' token


Create a new paste based on this one


Comments: