#include <stdio.h>
#include <windows.h>

char HALLO[200] = "Hallo ";

int main() {
    DWORD len = 194;

    GetUserName(HALLO + 6, &len);

    printf("%s", HALLO);
    return 0;
}
