Quote Originally Posted by gaby32 View Post
update problem 4 sorted, i had wrong bracket above display_main_menu();

void main()
{
display_main_menu();
}
Also, while some compiler will accept void main(), they shouldn't. It's illegal syntax. main must return an int. You'd be better off getting into that habit so your code will still work on conforming compilers.