Search found 1 match

by ckknight
Wed Jan 31, 2007 3:56 am
Forum: Volume 1 (100-199)
Topic: 101 - The Blocks Problem
Replies: 635
Views: 110925

101 - compile error that alludes me

This keeps giving me a COMPILE ERROR and I have absolutely no idea why, as it compiles and runs perfectly on my machine.

#include <iostream>

#define loop(var, start, finish) for (int var = (start); var < (finish); ++var)

using namespace std;

main()
{
int n;
cin >> n;

int underneath[n ...

Go to advanced search