I have to be more specific. Here's is a code sample :
Code:
#include <stdio.h>
#include <malloc.h>
typedef struct node {
int val;
struct node *next;
} NODE;
typedef struct {
NODE *head;
int size;
} STACK;
void push(node *kombos, STACK *top); // (1)
int main(){
Leave a comment: