Search found 1 match

by rodrigoalveslima
Thu Jun 29, 2006 10:47 pm
Forum: Volume 1 (100-199)
Topic: 103 - Stacking Boxes
Replies: 200
Views: 50377

103 - Runtime Error

My code to solve problem 103 is getting Runtime Error. Somebody can help me?


#include <stdio.h>
#include <stdlib.h>
#define MAX 31
#define N_MAX 26

struct celula {
int dim[N_MAX];
} box[MAX];

int v[MAX];
int marc[MAX];
int G[MAX][MAX];
int count;

int compare (const void * a, const void * b ...

Go to advanced search