Code:
//const char* msg[] = "Welcome to Utah.", "Welcome to Arizona";
//const char *msg = "Welcome to Utah.";
const char* msg[3] = {"Welcome one", "Welcome two", "welcome three" };
/*
int functionVerOne { 
// my code;
}*/
int functionVerTwo {
// my code
/*
// my buggy code
*/
/*
// my second solution for buggy code
*/
// my code that usually works as wanted 
}
I switch off between languages frequently, so I'm always grasping for syntax in variable declarations. I also have a bad habbit of commenting unworking code bits because I'm affraid the next attempt will be worse and I wont remember the first - better working code to return to. I'm too indecisive.