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 › Learning Programming

ExclamationLearning Programming

Posts 1–15 of 22 · Page 1 of 2
monkeybook
monkeybook
Learning Programming
Anybody know the best way for a young, stupid kid to learn programming and all. Links, books, classes anything would be much appreciated.
#1 · 16y ago
'Bruno
'Bruno
i would advice you to start by buying some books, read it, searching for some "exercices" to do, and don't rush into the hacks thing in the start, otherwise, you wont learn nothing and then you will just code by copying and paste what you have done before.

Start with basic things... like a calculator, a tic tac toe game.. etc... then... it's your choice...

books... i don't know the name of a exact one, because the only ones i read was C books and were in my language
I bet you don't want to learn portuguese at the same time as programming.. and i bet that you want to learn C++ instead of C.. so ^^ (even if they are a bit the same syntax... not exactly the same.. but w/e)
#2 · edited 16y ago · 16y ago
Lolland
Lolland
Quote Originally Posted by Brinuz View Post
i would advice you to start by buying some books, read it, searching for some "exercices" to do, and don't rush into the hacks thing in the start, otherwise, you wont learn nothing and then you will just code by copying and paste what you have done before.

Start with basic things... like a calculator, a tic tac toe game.. etc... then... it's your choice...
This.
#3 · 16y ago
ilovecookies
ilovecookies
Quote Originally Posted by Brinuz View Post
i would advice you to start by buying some books, read it, searching for some "exercices" to do, and don't rush into the hacks thing in the start, otherwise, you wont learn nothing and then you will just code by copying and paste what you have done before.

Start with basic things... like a calculator, a tic tac toe game.. etc... then... it's your choice...
Best book ever. I don't know if I can post this or not? So if I can't please don't ban me, just remove it. It's a link for the C++ Primer 5th Edition.

http://rapid share. com/files/144982769/C.Plus.Plus.Primer.Plus.Fifth.Edition.2004.pdf
#4 · 16y ago
Lolland
Lolland
You should be okay with posting that... it's helpful, and too big for MPGH.
#5 · 16y ago
crushed
crushed
Like the book posted up above. C++ Primer Plus. Look around, you'll find threads about C++ Basic statements, and easy instructions for the first program you're to make. Also, look up that AntiRTFM guys, or just check the C++ tutorials, read the thread, it DOES have some Beginner tutorials somewhere, if not just.
cplusplus.com - The C++ Resources Network or
C programming.com - Your Resource for C and C++ Programming
#6 · 16y ago
monkeybook
monkeybook
ilovecookies, ********** Says that it doesn't exist... Maybe Edit it? thank you
#7 · edited 16y ago · 16y ago
Void
Void
C++ instead of C.. so ^^ (even if they are a bit the same syntax... not exactly the same.. but w/e)
C++ and C have different syntax? I always thought C++ was sort of like an expansion of C, classes templates etc etc..

Although I never really did any research on the difference between C and C++.
#8 · 16y ago
Lolland
Lolland
In the book I recently bought, it explained that C++ is similar to C, but with expanded syntax, etc.

They are extremely close, but C++ has more.
#9 · 16y ago
crushed
crushed
Lol, David.
Here's an example.

C++ uses cout to display output, and cin, to take input.
C uses printf for output, scanf for input.

In C, when you declare/assign a variable, you'd usually have to write the statement something like this to display the number.
Code:
int a;
a=10;

printf("%d\n", a);
Someone correct me if I'm wrong. But C was so complicated, ._.;
#10 · 16y ago
Void
Void
Quote Originally Posted by crushed View Post
Lol, David.
Here's an example.

C++ uses cout to display output, and cin, to take input.
C uses printf for output, scanf for input.

In C, when you declare/assign a variable, you'd usually have to write the statement something like this to display the number.
Code:
int a;
a=10;

printf("%d\n", a);
Someone correct me if I'm wrong. But C was so complicated, ._.;
I never thought the day would come when you taught me something...
#11 · 16y ago
Hell_Demon
Hell_Demon
What? you guys dont use printf? o__O

Code:
int leet = 1337;
printf("The e-penis of Hell_Daddy is %d meters long!\n", leet);
#12 · 16y ago
'Bruno
'Bruno
Quote Originally Posted by crushed View Post
Lol, David.
Here's an example.

C++ uses cout to display output, and cin, to take input.
C uses printf for output, scanf for input.

In C, when you declare/assign a variable, you'd usually have to write the statement something like this to display the number.
Code:
int a;
a=10;

printf("%d\n", a);
Someone correct me if I'm wrong. But C was so complicated, ._.;
This. Thats why i said that they are bit different, but the same too. (expansion)
#13 · 16y ago
crushed
crushed
Quote Originally Posted by Davidm44 View Post
I never thought the day would come when you taught me something...
Don't worry, I'm gonna teach you everything about the Human Body.
27 bones in your hand, 4000 nerve endings, oh baby. So much to learn.
#14 · 16y ago
ilovecookies
ilovecookies
Quote Originally Posted by Brinuz View Post
This. Thats why i said that they are bit different, but the same too. (expansion)
C was the base language, C++ is an expansion on it. If you know C++ you technically know C, however just because you know C doesn't mean you necessarily know C++. IMO C++ made C simpler by adding classes. Thus we have cout and cin instead of printf and scanf.

Quote Originally Posted by monkeybook View Post
ilovecookies, ********** Says that it doesn't exist... Maybe Edit it? thank you
Remove the space betwee rapid and share, and remove the space between . and com. I had to space it out or MPGH would have censored it as an external link.
#15 · 16y ago
Posts 1–15 of 22 · Page 1 of 2

Post a Reply

Similar Threads

  • how can i learn programmingBy luigiantani94 in General
    4Last post 17y ago
  • Who wants to learn programmingBy lauwy in CrossFire Hack Coding / Programming / Source Code
    25Last post 16y ago
  • [HELP] Good Books For Learning ProgrammingBy Nathan in Coders Lounge
    11Last post 15y ago
  • Learning programmingBy GaretJax in Vindictus Discussions
    14Last post 15y ago
  • I Want to learn programming hacks!By thelegr in Other Programming
    4Last post 15y ago

Tags for this Thread

None