What does this mean:
I get it when I compile, it compiles it successfully, but it says this function may be unsafe, why is that? Deprecation? Hmm...Code:(12) : warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
Thats my code, I was just messing around with string functions, so I can have a better understanding of C++Code:int main ( ) { char TestSrc[] = "Test1234"; char TestDst[20]; strcpy(TestDst, TestSrc); }



LinkBack URL
About LinkBacks




So you could tell I use VS :P