First, for a C++ project, you are using alot of C-style headers. Drop the .h extension, the headers should work just fine. Most of what is in stdio.h should be already in iostream. My compiler has no iostream.h file. You sure need a fine lining between C and C++.
Secondly, your indetation here suck, hence it is alittle difficult to follow your code but lets see what good we can make of it.
For zeus' sake drop the use of goto. Just not a good programming style lately.
You better think of a better datastructure to store your cnic data.
You are clearing the screen like 100 times, not something amazing.
I also think you should read up on the good use of semaphores in loops.
I personally never thought of any use of the sound thingamajig.
Alot to improve on this code, and i presume you haven't covered classes yet but a class could have beautified things in the main function a bit.
Ooh, you also missed afew braces, fix that and more will be added. Also arrange you coe in a meaningfull manner. Here everything is like just remembered and thrown in there.