1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(99) : warning C4996: 'strcpy' was declared deprecated
1> c:\program files\microsoft visual studio 8\vc\include\string.h(73) : see declaration of 'strcpy'
1> Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(122) : warning C4996: 'stricmp' was declared deprecated
1> c:\program files\microsoft visual studio 8\vc\include\string.h(213) : see declaration of 'stricmp'
1> Message: 'The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _stricmp. See online help for details.'
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(175) : warning C4996: 'strcpy' was declared deprecated
1> c:\program files\microsoft visual studio 8\vc\include\string.h(73) : see declaration of 'strcpy'
1> Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(177) : warning C4996: 'getch' was declared deprecated
1> c:\program files\microsoft visual studio 8\vc\include\conio.h(145) : see declaration of 'getch'
1> Message: 'The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _getch. See online help for details.'
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(216) : error C3861: 'clrscr': identifier not found
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(236) : error C3861: 'clrscr': identifier not found
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(258) : error C3861: 'clrscr': identifier not found
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(277) : error C3861: 'clrscr': identifier not found
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(296) : error C3861: 'clrscr': identifier not found
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(313) : error C3861: 'clrscr': identifier not found
1>c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(336) : error C3861: 'clrscr': identifier not found
1>Build log was saved at "file://c:\Users\GeNeRa07z\Documents\Visual Studio 2005\Projects\ali\ali\Debug\BuildLog.htm"
This is a much better set of errors. These errors and warnings indicate that you're trying to use a function, clrscr, that simply does not exist, and that you're using functions ( strcpy, stricmp, getch) that do exist, and it won't stop you using them, but they're really really bad choices.
This all looks like it was written over a decade ago. You should throw away whatever you learned this from and get something recent.
error C2360: initialization of 'f' is skipped by 'case' label
1> c:\users\genera07z\documents\visual studio 2005\projects\ali\ali\ali.cpp(97) : see declaration of 'f'