This is my code,
_tprintf(_T("\nPlease set all fields"));
_tprintf(_T("\n Input Name: "));
_tscanf_s(L"%ls",inputHolder,length);
wcscpy_s(LC.NAME,length, inputHolder);
the problem is when I am inputting a name with space the program will think that the white space is a enter then it will skip to the next input.For example
( what i want, Input Name: mj stack)
( whats happening, Input Name:mj Category:stack)
Help please, ps I am a noob.