strcpy error msg

THe program run perfect but i got the following error from my compiler:
warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS.

I have strcpy(PRVseatIdentification,seatIdentification);
and strcpy(PRVseatHolder,seatHolder);

Is this normal? Can i fix it ?
What can I say..
This function may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS.
Also, consider reading http://msdn.microsoft.com/en-us/library/8ef0s5kh%28VS.80%29.aspx
Ok, i understand the mistake after reading the provided link.

Thanks hamsterman!
Topic archived. No new replies allowed.