Search found 1 match

by Maciej
Mon Nov 11, 2002 5:22 pm
Forum: Volume 1 (100-199)
Topic: 101 - The Blocks Problem
Replies: 635
Views: 108876

101 runtime error ?

I have got runtime error 101, what is wrong?
On my PC everything is ok. :cry:
[cpp]

/* @JUDGE_ID: XXXXXX 101 C++ "" */
#include <stdio.h>
#include <string.h>

struct node
{
node* next; int item;
node(int x = 0) { item = x; next = 0; }
};
typedef node* link;

void move_onto(link a, link b ...

Go to advanced search