【C言語】構造体
環境:
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
Coding Changes the World
環境:
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