Search found 1 match

by lulo
Sat Feb 18, 2006 1:54 pm
Forum: Volume 2 (200-299)
Topic: 245 - Uncompress
Replies: 40
Views: 13104

245 Compile Error

I can compile it in window, but don't know why there is a compile error when i submit the code to judge.

#include <iostream>
#include <ctype.h>

using namespace std;

struct node {
char word[51];
node *next;
int charno;
node *prev;
};

void output(node *tail) {
node *ptr;
while (tail ...

Go to advanced search