Search found 1 match

by jtbmilan
Thu Feb 28, 2013 9:03 am
Forum: Volume 1 (100-199)
Topic: 101 - The Blocks Problem
Replies: 635
Views: 110151

101 - The Blocks Problem (RunTimeError - 100% correct sol)

I keep getting a Runtime Error when submitting, however im 999% sure my answer is correct. Can someone help me please?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

struct stackTag {
int *list;
int numOfElements;
};

typedef char String[10];

void initialize(struct stackTag list ...

Go to advanced search