c_cpp 功能语言的小测试对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 功能语言的小测试对象相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <stdlib.h>

//test object for simple functional language

typedef enum
{
	WindType_None,
	WindType_Int,
	WindType_Char,
	WindType_List
} WindType;

typedef struct
{
	WindType type;
	long _int;
	char _char;
	struct WindObject* _lst; // nests one level down.
} WindObject;

int main(int argc, char const *argv[])
{
	/* code */
	return 0;
}

以上是关于c_cpp 功能语言的小测试对象的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 链表节点的小练习。

c_cpp c中的小矩阵虚拟机

c_cpp c中的小化学程序反应堆

c_cpp 在cpp中使用atof的小例子

c_cpp 难以解析的C ++文件的小样本

c_cpp Gethostbyname打印输入域名IP地址的小应用程序