Я использую Notepad ++ с TDM-GCC. Мой компьютер 2 Гб оперативной памяти Windows 10 32 бит 3,30 ГГц. Когда я выполняю свою простую программу, она показывает ошибку.
Access is denied.
An attempt was made to execute the below command.
Command: D:\Deane\Github\CPP_Projects\AnalysisName\main.bat
Arguments:
Error Code: 5
Я следую за этим: Функция ShellExecuteEx всегда возвращает код ошибки 5 (C ++)
Код программы (при необходимости):
/* AnalysisName Program - written by Vo Tran Nha Linh */
#include <iostream> // Input and Output library.
using namespace std;
int main()
{
string name;
cout << "Hello friend! It's nice to meet you, what is your name?" << endl; // Ask the name.
cin >> name; // Input name.
cout << "Hello " << name << ". Your name is interesting." << endl; // Have a greeting.
cout << "Your name has " << name.length() << "letters." << endl; // Show the name's length.
cout << "It starts with " << name.front() << "letter." << endl; // Show the first letter of the name.
cout << "It ends with " << name.back() << "letter." << endl; // Show the last letter of the name.
return 0;
}
Но он не активен, пожалуйста, помогите мне. Большое спасибо!
Перейдите к C:\Program Files (x86)\Notepad++
Щелкните правой кнопкой мыши свойства клика по файлу Notpad ++. Exe. & под вкладкой совместимости UN-TICK запустите программу от имени администратора.
Ссылаться на эта ссылка.
Моя проблема решена!
Я скучаю по Visual C ++ Redistributable 2008 и 2010.
Модераторы, пожалуйста, закройте мою тему. Спасибо!