C程序在VS中 #define内容无法识别

#include "stdafx.h"
#include
#include
#include "string.h"

#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
#define OVERFLOW -1
#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define MAXN 5

 

看了网上很多资料,应该是编译顺序的问题,将#include包含库的内容放到#define之前,另外调整一下包含库的顺序“stdafx.h”放到最前,问题即可解决。
 

你可能感兴趣的:(C)