Nuestro profesor nos pidió que comprobásemos si una palabra es un palíndromo utilizando pilas. Cada vez que lo ejecuto, hay un error: Unhandled Exception. Access violation
¿Qué estoy haciendo mal? ¿Cómo puedo mejorar mi código? Mi código es el siguiente:Palindrome Uso de una pila
typedef struct stack{
char name;
struct stack * next;
}Stack;
void push(Stack**head, char value);
char pop(Stack**head);
int main(){
char word[11];
int i=0;
int lenght = 0;
Stack*head = NULL;
printf("Please type the word: ");
scanf("%s", word);
lenght = strlen(word);
while(word[i]!='\0'){
push(&head, word[i]);
i++;
}
i = 0;
while(pop(&head)==word[i]){
i++;
}
if(i==lenght) printf("The word is a palindrome");
else printf("The word is not a palindrome");
}
primera: usar 'valor' en lugar de' valor [i] 'en la firma de funciones. – ruslik