I declared char linkk[23];
I printed it using
for(int i=0;i<23;i++)
cout<<linkk[i];
I didn't notice anything wrong but when I opened the link a !v popped up after the 23 elements.
char arr[]="start C:\\Users\\user\\Downloads\\chrome-win32\\chrome-win32\\chrome.exe ";
strcat(arr, linkk);
string openL=arr;
system(openL.c_str());
So before joining the arrays I removed the the two elements from linkk.
linkk[24]='\0';
linkk[23]='\0';
It worked but I don't understand where the !v came from.
PS: I am a noob.