【C言語】構造体

2014年4月2日

環境:
Ubuntu にgcc環境でソースをコンパイル

#include
#include
#define MAXSIZE 30
typedef int DataType;

typedef struct{
int cur;
DataType data;
}comp,slinklist[MAXSIZE];

//初期化
void init_sl(slinklist l)
{
int i;
for(i=0;i

Source

Posted by arkgame