[ create a new paste ] login | about

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

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

struct Gio 
{
	int Hour, Minute, Second;
};
typedef struct Gio GIO;

void NhapGio(GIO &);
void XuatGio(GIO);


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


Create a new paste based on this one


Comments: