assignment makes pointer frominteger without a cast,
发布网友
发布时间:2024-10-24 12:58
我来回答
共2个回答
热心网友
时间:2024-10-30 12:16
n值未初始化。
另外
s[i].a[j]=NULL;
//NULL一般用来初始化指针,你这里是初始化int型变量,建议用0,这样便于理解
热心网友
时间:2024-10-30 12:17
struct sta
{
int top;
int a[1000];
}s[k];//这里不能换行
热心网友
时间:2024-10-30 12:14
n值未初始化。
另外
s[i].a[j]=NULL;
//NULL一般用来初始化指针,你这里是初始化int型变量,建议用0,这样便于理解
热心网友
时间:2024-10-30 12:19
struct sta
{
int top;
int a[1000];
}s[k];//这里不能换行