Posts by Joyeeta Choubey

Author Biographical Info: Hi there! I am a BTech ECE undergraduate in BVCOE ! I love to explore more in the field of programming languages everyday and very fond of writing technical blogs.

Since you are here, do check out my recent blogs and leave a comment if they helped you!
Thank you!

How to terminate a thread in C++

By Joyeeta Choubey

Hello fellow learners! In this tutorial, we will learn how we can terminate a thread in C++. C++11 does not have a direct method to terminate a thread because it has some resources.... Read More

Fold Expressions in C++

By Joyeeta Choubey

Hi folks! In this tutorial, we are going to learn and implement Fold Expressions in C++. So let us understand first what are fold expressions. Fold Expressions This is a new featur.... Read More

How to set a string null in C++

By Joyeeta Choubey

Hello readers!  In this tutorial, we are going to learn how to set a string null in C++. Let’s have a look at how we can do this. We can do this using the std::string::clear.... Read More

How to return null vector in C++

By Joyeeta Choubey

Hello folks! In this tutorial, we are going to learn how we can return a null vector in C++. Before going deep into the topic let’s understand what are null vectors. Null Vec.... Read More

Define constant variables in C++ header

By Joyeeta Choubey

Hello readers! In this tutorial, we are going to learn how we can define constant variables in the C++ header file. In C++ constant variables are defined as the types of variables .... Read More

How to set a pointer to null in C++

By Joyeeta Choubey

Hello readers! In this tutorial, we are going to learn how we can set a pointer to null in C++. A null pointer contains a constant that does not point to any valid objects or funct.... Read More

Navigate through a vector using iterators in C++

By Joyeeta Choubey

Hello readers! In this tutorial, we are going to learn and implement how to navigate through a vector using iterators in C++. Before we proceed further let’s have a look at w.... Read More

Vector size() function in C++

By Joyeeta Choubey

Hi folks! In this tutorial we are going to learn and focus on what are vectors and about a special function associated with vectors ie. vector size(). What are vectors? They are dy.... Read More

Related Posts