I'm trying to use strcat 2 time in a row.
when I compile first 2 lines it's works, but when I added the third line I get:
"Error LNK2019 unresolved external symbol _srtcat referenced in function _StartUpFunc "
strcpy(msg2sent, "Hello");
strcat(msg2sent, temp_username);
srtcat(msg2sent, ", welcome to the session.");
what can be the reason? Im using VS15