8" :class="scrolled && 'is-scrolled'">
NOA
Labs
Tutorials
Courses
Skill Forge
Explore
Labs
Hands-on live sessions
Mentors
Meet the senior engineers
Projects
Real portfolio-ready builds
Talent Directory
Public student profiles
Mock Interview
Practice with real feedback
ATS Resume Checker
Free instant resume scoring
Search docs
Ctrl K
Login
Join Free
Artificial Intelligence
LangChain
LLMs
Machine Learning
Prompt Engineering
RAG (Retrieval-Augmented Generation)
AJAX
GraphQL
Apache Kafka
Microservices
Node.js
RabbitMQ
REST API
WebSockets
Algorithms
Data Structures
Angular
Bootstrap
CSS
HTML
jQuery
Next.js
Nuxt.js
React
Svelte
Tailwind CSS
Vue.js
ASP.NET Core
Django
.NET
Entity Framework Core
FastAPI
Flask
Gin
gRPC
Hibernate
Laravel
NestJS
Spring
Spring Boot
Spring Cloud
Spring Data JPA
Spring MVC
Spring Security
AWS
Azure
CI/CD
Docker
Git
Kubernetes
Linux
Nginx
Terraform
C
C++
C#
Dart
Go
Java
JavaScript
Kotlin
PHP
Python
Ruby
Rust
Swift
TypeScript
Database Design
MongoDB
MySQL
Oracle Database
PostgreSQL
Redis
SQL
System Design
↑↓ navigate
↵ open
esc close
Tutorials
/
C++
C++ menu
C++ Tutorial
High-performance systems programming with manual memory control and modern C++ features.
Start the C++ tutorial →
What you'll learn
1. C++ Introduction
What C++ is, where it is used (games, engines, HFT), and compiling your first program with g++/clang++.
2. C++ Syntax & Variables
Types, const, references vs pointers, control flow, functions, and function overloading in C++.
3. OOP in C++
Classes, constructors and destructors, inheritance, virtual functions, and access specifiers.
4. Memory Management in C++
Stack vs heap, RAII, unique_ptr/shared_ptr, and move semantics with a real before/after example.
5. Templates and Generic Programming
Function templates, class templates, non-type template parameters, and a complete generic Stack<T> container.
6. The Standard Template Library
std::vector, std::map, iterators, and common algorithms like std::sort, std::find, and std::count_if.
7. Multithreading in C++
std::thread, data races, std::mutex and std::lock_guard, and a complete thread-safe bank account example.
8. C++ Interview Questions
Commonly asked C++ interview questions on virtual destructors, RAII, smart pointers, and undefined behavior.