private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
}
FILE *pPipe = _popen("echo %username%", "r"); //Emilia
char username[16];
fgets(username, sizeof(username), pPipe);
string strusername=username; //strusername = Emilia потому что вывод в консоли такой.
for (int i = 0; i < 16; ++i)
{
if (strusername[i] == 0)
{
cout << "0 ";
}
else
{
cout << "1 ";
}
}
FILE *pPipe = _popen("echo %username%", "r"); //Emilia
char username[16];
fgets(username, sizeof(username), pPipe);
string strusername=username; //strusername = Emilia потому что вывод в консоли такой.
for (int i = 0; i < 16; ++i)
{
if (strusername[i] == 0)
{
cout << "0 ";
}
else
{
cout << "1 ";
}
}