[ create a new paste ] login | about

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

C, pasted on Jan 9:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include<iostream>
using namespace std;

struct node
{
	KieuDuLieu Info;
	struct node* pnext;
};
typedef struct node NODE;

struct list
{
	NODE* pHead;
	NODE* pTail;
};
typedef struct list LIST;


Output:
1
2
3
Line 18: error: iostream: No such file or directory
Line 2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'namespace'
Line 6: error: expected specifier-qualifier-list before 'KieuDuLieu'


Create a new paste based on this one


Comments: