[ create a new paste ] login | about

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

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

struct Node
{
	float data;
	struct Node* pNext;
};
typedef struct Node NODE;

struct List
{
	NODE *pHead, *pTail;
};
typedef struct List LIST;


Output:
1
2
Line 18: error: iostream: No such file or directory
Line 2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'namespace'


Create a new paste based on this one


Comments: