Say I have something like this
#include <iostream>
#define ICOL 32
using namespace std;
int main(int argc, char *argv[]) {
...
Is there a way that I can change the value of that global variable within main? Simply saying ICOL = 300; does not work...