C Tutorial

This Pointer in C++

In this article, we will understand more about the this pointer as well as understand more about it’s use case. The This Pointer This is the pointer whose type is the same as the class type. Okay, but where does it points? Yeah, it points to the current instance of the class(object). Let’s prove this …

This Pointer in C++ Read More »

If-Else in C

Control flow statement in C (If – Else) – Part 1 This article is all about the control flow statement in C (If – else). It means if you want to control the certain execution of the program according to the condition described by you. For example, you want to check if the number entered …

If-Else in C Read More »

Functions in C/C++

What are the functions in C and why should we use them? Suppose you have to write a code in which you have to find out the sum and difference of two numbers three times. Well, it’s very simple to do that but now you have to write the same code three times. To make …

Functions in C/C++ Read More »