1) windows.h is not a lib, it is a header file.
2) You do not need to include windows.h to use system("cls"), as systems calls an external program.
3) system is evil. Using it introduces a serious security risk in your application by virtue that you are calling an external application that could have been replaced with a virus.
If you want to clear your screen after each selection you're going to have to learn a little bit of the API for your OS of choice.
(or if you don't really care about security or have no reason to worry about it go ahead and use system for your OS's clear screen program and post the errors you are having)