结构体struct的定义和使用方法,求教了!
struct test //test是结构体的名称可自定义{
int a; //结构体的成员
int b; //结构体的成员
};
使用的时候:
test t;
t.a = 1;
t.b = 2;
next:以下是我写的代码,编译的时候有6个错误和3个警告,大家告诉我错误在哪呢??
#include <stdio.h>
int main(void)
{
struct test
{
int a;
int b;
};
test t;
t.a = 1;
t.b = 2;
printf("%d",t.a);
return 0;
}