Recent Posts
poast your fav cool websites
Give me one tech tip you know about
just installed Arch Linux bros
Urge to watch Mr. Robot Hindi dub
/cyb/+/psg/: Cyber-Punk/Security & Privacy
soyjak.st forum which hacked 4chin blocks all indi...
Have you discovered female luke smith yet?
Aarambh hai prachand..
OTG vs Microwave
which llm subscription is the best
Tell me all about indiachan/bharatchan lore
How do people who have a job get time to code on s...
Great time to be a /g/enius
Just found out linux foundation has their own free...
the best android browser has arrived!!
My ThinkPad arrived
(((Open)))ai playing new tricks
NEED ADVICE FROM true /g/entooman
Create something interesting with your skills now ...
Gonna make my own 34-key keyboard
which software on PC and mobile you use to handle ...
🦀🦀🦀🦀🦀
C++ Resources
Local Models General
GPT-5
What is shell programming
Libre Thinkpads
Computing
Tech Scams
Thinkpads are the best Laptops
M. tech. thesis suggestion,ideas.
Linux /gen/
Indian related AI discussion
privacy chuds gtfih
Best LLM model for coding and maths.
PuchAI
XQdAY2
No.1147
C++ development, how to do it? where to start learning from?
>inb4 google yourself


AkC6NU
No.1148
>>1147(OP)
many websites teach you c++ and other languages for free.
4chan torrent also has some torrents of good lectures from expensive courses taught by good faculty. Search their archives and ask them directly. just don't reveal your Indian identity.
XQdAY2
No.1149
>>1148
thanks for your vague advices.
ZlIGAU
No.1150
>>1147(OP)
What are you planning to do with c++?
Most c++ projects are compiled and run directly on operating system as native code hence you'll need basic understanding of how applications on operating system work to make any project from scratch.
You can learn to code just by going through tutorials but to make any project you'll need to be familiar with some concepts of OOP (if your project is complex enough).
You may analyse code of some simple but intresting opensource projects from which you can get an idea about how to implement OOPs.
XQdAY2
No.1151
>>1150
interesting, i only know cpp for leetcode right now and nothing else, so where do you think i should start from?
J0lrkw
No.1152
>>1147(OP)
Youtube
XQdAY2
No.1153
>>1152
i looked up on yt but didnt find anything helpful, mostly just lectures on learning cpp.
ZlIGAU
No.1154
>>1151
Just learn the language like anybody does that's enough c++ "language" for leetcode.
If you're interested in projects related to c/c++ start by making your own (make anything simple) or by searching for small but intresting open source projects written in c++ and try to understand how it works for me it was Android Mod Loader (a modding tool for patching android apps and games) but it's developer was not very friendly (he was a really busy man from army while having AML as fun project it's not an easy task already).
And yes you won't find tutorial for everything on Lutube start using a search engine or ask any AI about all your specific questions.
C++ is a High performance language which after being compiled and linked runs directly on CPU in most operating systems in the form of binary executable (.exe files) or as library (.dll files in case of windows). Hence it is used to make software which needs high cpu utilisation like system libraries,game engines, web browser's rendering engines etc. even entire kernels of major operating systems are mostly written in c/c++.
XQdAY2
No.1155
>>1154
thanks for info anan, will do my own research, first time going into something niche.