gpt4 book ai didi

c - ")" token 和 C 错误之前的预期表达式错误 - 错误 : expected expression before ']' token

转载 作者:行者123 更新时间:2023-11-30 18:41:26 27 4
gpt4 key购买 nike

这是我的代码:

#include <stdio.h>
#include <conio.h>
#define MAX 10;

int rradhe[MAX];
int koka = -1;
int bishti = -1;

void shto_djathas()
{
int element;

if ((koka == 0 && bishti == MAX -1 )||koka == bishti +1)
{
printf("\nGjendje Overflow");
getch ();int rradhe[MAX];
int koka = -1;
int bishti = -1;
return;
}
if (koka == -1)
{
koka = 0;
bishti = 0;
}
else
if (koka == MAX -1)
bishti = 0;
else
bishti = bishti + 1;
printf ("\n Shtypni elementin qe doni te shtoni ");
scanf ("%d", &element);
}

void main () {
int c;
while(1){
printf("---------------------------");
printf("\nDetyre Kursi - Ivi Hysenbelli , Olsi Lala");
printf("\n 1 - Shtoni element ne rradhe"); // elementet do te shtohen nga e djatha
printf("\n 2 - Hiq element nga e djatha(Nga fillimi)");
printf("\n 3 - Hiq element nga e majta(Nga fundi)");
printf("\n 4 - Afisho rradhen");
scanf("%d",&c);
switch (c) {

case 1:
shto_djathas();
break;



}

}
}

我不明白为什么会向我显示此错误。

错误代码在线5.13.16.27我几乎尝试了所有方法并阅读了太多论坛,但我不明白为什么。这是我在 c 中的第一个双端队列。我是 c 编程的新手,我将非常感谢您的帮助。提前致谢。

附:对不起我的英语

最佳答案

从宏定义中删除分号

#define MAX 10; 应为 #define MAX 10

并了解原因 not to use semicolon in the end of macro .

关于c - ")" token 和 C 错误之前的预期表达式错误 - 错误 : expected expression before ']' token,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21452213/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com