I have problem creating global variable inside function, this is simple example:
int main{
int global_variable; //how to make that
}
This is exactly what I want to do:
int global_variable;
int main{
// but I wish to initialize global variable in main function
}