Learn a new programming language

cpp

C++ Undefined reference to std::cout

3 minute read

How to fix the undefined reference to std::cout in the C++ programming language. This error is usually caused by a dependency problem in the gcc compiler.

C++ Convert Int to String

2 minute read

How to convert an int to a string in C++, we will be using the to_string, stringstream and sprintf functions from the std library. Easiest methods to convert

C++ STD Arrays explained

4 minute read

The C++ std::array container is a fixed-size container that stores elements in a contiguous memory location. In this tutorial, we will learn how to use it

Stack is not a member of std in C++

2 minute read

How to fix the stack is not a member of std error in the C++ programming language. We will use the stack module to fix this error

Set is not a member of std in C++

2 minute read

How to fix the set is not a member of std error in the C++ programming language. We will use the set module to fix this error

Remove is not a member of std in C++

2 minute read

How to fix the remove is not a member of std error in the C++ programming language. We will use the algorithm module to fix this error

Queue is not a member of std in C++

2 minute read

How to fix the queue is not a member of std error in the C++ programming language. We will use the queue module to fix this error

List is not a member of std in C++

2 minute read

How to fix the list is not a member of std error in the C++ programming language. We will use the list module to fix this error

Deque is not a member of std in C++

2 minute read

How to fix the deque is not a member of std error in the C++ programming language. We will use the deque module to fix this error

Array is not a member of std in C++

2 minute read

How to fix the array is not a member of std error in the C++ programming language. We will use the array module to fix this error

Convert float to int in C++

1 minute read

In this article, we will learn how to convert a float to an int in C++ using the static_cast method and the C-style casting method.

Convert float to double in C++

1 minute read

How to convert float to double in C++, we will be using the static_cast method, as well as casting it into a double type.

C++ Main Function explained

3 minute read

The main function is the entry point of a C++ program where the execution of a program starts. In this tutorial, we will learn about it and its returns.

C++ Extraction (») operator explained

2 minute read

In this article, we will take an in-depth look at the extraction operator (‘»’) in C++ and its usage with the cin function from the STD library.

C++ Arrow Operator explained

2 minute read

The C++ arrow operator, or member selection operator, is used to access members of a class through a pointer. In this tutorial, we will learn how to use it.

C++ STD Maps explained

7 minute read

C++ Std::map container is a sorted associative container that stores elements formed by a key value and a mapped value. Maps will be explained in this tutorial

Object Slicing in C++

2 minute read

C++ Object slicing is a phenomenon that occurs when an object of a derived class is assigned to a variable of the base class. We will talk about them in depth

C++ Arrays explained

4 minute read

C++ Arrays are a fundamental data structure that allow us to store multiple elements of the same data type. In this tutorial, we will learn how to use them

Virtual functions in C++

3 minute read

In this article, we will learn how to use the highly-used virtual functions in C++. We will go through these topics briefly.

Floor is not a member of std in C++

2 minute read

In this article, we will explain how to fix the floor is not a member of std error in the C++ programming language. We will use the cmath module

Cin is not a member of std in C++

2 minute read

In this article, we will explain how to fix the cin is not a member of std error in the C++ programming language. We will use the iostream module

Decimal part of a number in C++

less than 1 minute read

How to get the fractional or decimal part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Whole part of a number in C++

1 minute read

How to get the whole part of a number or float using C++ functions. We will use the modf function in order to achieve this.

Pointers in C++

4 minute read

C++ pointers allow us to point at objects and variables in the C++ programming language. In this tutorial, we will learn how to use C++ pointers

Modf is not a member of std in C++

2 minute read

How to fix the modf is not a member of std error in the C++ programming language. We will use the cmath library to fix this error

Cout is not a member of std in C++

2 minute read

How to fix the cout is not a member of std error in the C++ programming language. We will use the iostream module to fix this error

Map is not a member of std in C++

2 minute read

How to fix the map is not a member of std error in the C++ programming language. We will use the map module to fix this error

Back to top ↑

python

Send Push notifications to Phone in Python

7 minute read

In this article, you will learn how to send push notifications to your phone and other devices using Pushover. A very affordable method for solo developers.

Python Lists vs Sets

6 minute read

In this article, we will explore the differences between lists and sets in Python, how to create them, adding, removing elements and iterating over them.

Python 3 Ways to merge two dictionaries

3 minute read

In this article, we will learn how to merge two dictionaries in the Python programming language. We will showcase 3 different ways to achieve this.

Back to top ↑

tech

Python Github Copilot: A review

5 minute read

In this article we will discuss my thoughts and opinions on GitHub’s new Copilot program. An AI powered program that helps you code faster.

Back to top ↑