Search found 1 match

by kennykarnama
Sun Jul 26, 2015 6:07 am
Forum: Volume 116 (11600-11699)
Topic: 11661 - Burger Time?
Replies: 37
Views: 17635

Re: 11661 - Burger Time?

#include<stdio.h>
#include<stdlib.h>

struct linklist{
struct linklist *next;
char store;
int pos;
};
int min;
typedef struct linklist linklist;
typedef linklist *node;

void insert(node *head,char s,int p);
void removeAll(node *head);
void display(node *head);
int distance(node *head);
int main ...

Go to advanced search