shlogg · Early preview
Mehfila A Parkkulthil @mehfila123

I love coding . I am here to learn and share my experience being a coder.

Software Engineering And Web Development Advice Needed

Seeking advice on past experiences is a great way to learn and grow as a software engineer! What challenges have you faced, and how did you overcome them? Share your stories!

Building A Strong Online Presence With Landing Pages And Networking

Build an impressive profile with these 3 pillars: Landing page (professional pic & storytelling), About Section (educational background & job seeking), and Networking (connect with industry experts).

Assignment Operators In C++: A Comprehensive Guide

Assignment Operators in C++ assign values to variables. Simple assignment operator (=) assigns a value directly. Compound assignment operators (e.g., +=, -=, *=, /=, %=) perform an operation and assign the result in one step.

C++ Basics For Beginners With VSCode Setup

Starting a DSA blog series! C++ tutorials for beginners: learn basics, syntax, and write code with `<iostream>` & `cout` statements. Download VScode, compiler, and install C/C++ extension pack.

C++ Variables, Datatypes & User Input Basics

Learn C++ basics! Declare multiple vars with `int x = 15, y = 6, z = 50;` or assign same value in one line `x = y = z = 60;`. Get user input with `cin >> z;` and output with `cout << sum;`.

C++ Variables And Data Types Explained In Detail

Variables in C++ are containers for storing data values with unique names. Data types determine what type of data it holds (int, float, char, etc.). Declaration reserves memory, initialization sets its value.

How To Print In C++: Using Cout, Namespace, And Newline Characters

Learn C++ basics! Print text with `cout`, use `std::` or `using namespace std`. Add new line with `\n` or `endl`. Comments: single-line (`//`) and multi-line (`/* */`).

Mastering Data Structures And Algorithms With C++ Tutorials

Learning Data Structures and Algorithms with C++! Starting a blog series on DSA basics, covering primitive & non-primitive data structures, arrays, linked lists, stacks, queues, trees, graphs & tables. Stay tuned for tutorials!