es.davy.ai

Preguntas y respuestas de programación confiables

¿Tienes una pregunta?

Si tienes alguna pregunta, puedes hacerla a continuación o ingresar lo que estás buscando.

Tag: ACTIVITY-STACK

Error al crear el archivo de encabezado de la pila. En C.

“`cpp <h1>include <stdbool.h></h1> <h1>include <stdlib.h></h1> typedef struct Node{ void *data; struct Node *next; }node; typedef struct Stack{ node *top; }stack; bool push (stack *s , void *val) { node *n; n = create_node (val); if (n) { n->next = s->top; s->top = n; return true; } return false; } void* . . . Read more