Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › C++/C Programming › C++ Path Directory

C++ Path Directory

Posts 1–6 of 6 · Page 1 of 1
KO
Kody103
C++ Path Directory
I've been learning on how to make hacks with C++, but everytime I type in

#include <iostream>

int main()
{
cout << "Hello World!\n";
return 0;
}

It gives me aleast two errors, and when i try to fix the errors, i end up getting more errors. I'm pretty sure its because of my Enviroment Options but i dont know how to get to it and change it. I'm using both Microsoft Visual C++ 2008 Express Edition and Bloodshed Dev-C++.
#1 · 16y ago
Grim
Grim
moving to the C++ section for actual help. i'll give you a 1 hour redirect.
#2 · 16y ago
Lolland
Lolland
Post your errors, we can't just magically retrieve them.
#3 · 16y ago
CT
ctpsolo
I see a error right away, you just got cout instead of std::cout, that ought to render a error. If you want to be lazy and only write cout, you need to add: using namespace std; (preferably before your main).
#4 · 16y ago
Calebb
Calebb
Code:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!\n"; << endl;
return 0;
}
That should work.
#5 · 16y ago
jokerskull123
jokerskull123
Quote Originally Posted by Calebb View Post
Code:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!\n"; << endl;
return 0;
}
That should work.
nice u helped him so i thanked you. for helping him. yes. using namespace std; and #include "stdafx.h" are very basic. that can explain ur first two errors.
#6 · 16y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • Following The Wrong PathBy Haxors in General
    44Last post 19y ago
  • Motorola Timbuktu Pro 8.6.5/8.7 Path Traversal / Log Injection ExploitBy mostwanted in Exploits
    0Last post 18y ago
  • Some Hack for wolfteam for new pathBy elad123456 in WolfTeam General
    6Last post 18y ago
  • Combat Arms Going On The Path Of Self-Destruction?By KakashiRock in Combat Arms Hacks & Cheats
    25Last post 18y ago
  • whats the path for cod4?By Rico760 in Call of Duty 4 - Modern Warfare (MW) Hacks
    1Last post 18y ago

Tags for this Thread

#c++#enviroment options#errors