Имя пользователя в строке:
void UserName(string *x){
char username[UNLEN + 1];
DWORD size = UNLEN + 1;
GetUserName(username, &size);
string transition(username);*x=transition;}
//use this synthax in main : string username;UserName(&username);
PS: не забудьте эти библиотеки:
#include <windows.h>
#include <Lmcons.h>
#include <string>