vs2010 引入cout,cin ,endl报错,不能识别

首先要引入命名空间

using namespace std;

然后 倒入的头文件要放置在 命名空间前面

//
#include "stdafx.h"
#include
#include
#include


using namespace std;

#define TYPE char

//树的节点
struct TreeNode{
    TYPE element;//该节点的元素
    TreeNode *firstChild;//指向该节点的第一个孩子
    TreeNode *nextSibling;//指向该节点的兄弟节点


};

int _tmain(int argc, _TCHAR* argv[])
{}

你可能感兴趣的:(c与数据结构)