To get the user name from Windows, using MinGW, should I use the function getlogin() from unistd.h, or the Windows function GetUserName?
Thank you.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can check the
USERNAMEvariable:If you are fully on Windows you can use its API (
GetUserName()) too:In general:
getlogin()if you are on linux / unix since it’s not available in MinGWGetUserName()if you are on windows