/* main6-3.c 检验bo6-3.c的主程序 */
#define CHAR 1 /* 字符型 */
/*#define CHAR 0 /* 整型(二者选一) */
#if CHAR
typedef char TElemType;
TElemType Nil=' '; /* 字符型以空格符为空 */
#else
typedef int TElemType;
TElemType Nil=0; /* 整型以0为空 */
#endif
#include"c1.h"
#include"c6-3.h"
#include"bo6-3.c"
Status vi(TElemType c)
{
#if CHAR
printf("%c ",c);
#else
printf("%d ",c);
#endif
return OK;
}