Skip to main content

Command Palette

Search for a command to run...

Starting with C++

From Fundamentals to Data Structures

Published
1 min readView as Markdown
Starting with C++

I am choosing C++ to learn DSA because I have briefly known it since school. I also wanted a language for which resources are readily available. It seems easy to understand from the top, and I have also seen many systems built on top of it.

Below is what simple C++ codes look like.

#include <iostream>                   // Header for input/output stream

using namespace std;

int main() {
    cout << "Hello, World!" << endl; // Prints the message to the console
    return 0;                        // Indicates successful program termination
}

I hope it will be fun.

Learning One Step at a Time - DSA

Part 1 of 1

This series is a detailed account of my journey as I learn Data Structures and Algorithms (DSA). It includes explanations, notes, problem-solving approaches, and insights gained along the way.