When we move on in our life, we take some steps. Just like we walk up the staircase one step forward at a time, we do the same with the C++ programming language. You might also remember the BODMAS rule in mathematics, which told us how we are required to move forward with a numerical…
Bitwise Operator is related to binary numbers, so before starting with this type of operator, let's know something about binary numbers. Binary numbers are a combination of 0's and 1's, which makes the low-level language, or in simpler terms, a language that a computer can understand but not us humans. Since we know about binary numbers, let us…
In this blog, we will see the definition of relational operators, types of relational operators, and a detailed explanation of each; if you hadn’t checked the previous blog on operators so, check now and add some precious knowledge to the library of your smart brain. Let’s go
What is the relational operator in c++?
A relational operator checks the relationship between…
Programming is truly the field of testing your skills and teasing your brain. The deeper you'll go into programming, the more you realize that programming's all about applying logic, developing interesting algorithms, teasing your mind by encountering new challenges and situations, and gaining next-level confidence by overcoming them and getting a robust solution.
Logic is…
You might have come around two types of people in your life till now. One always talks about equality and the other who thinks that not everyone is equal in whatever manner. Since C++ is also not so much different from our real-life scenarios, the two operators like the thinking exist. These come under the…
In this blog, we will see the definition of unary operators in C++, types of unary, and a detailed explanation of each; if you haven't checked the previous blog on operators, check now and add some precious knowledge to the library of your smart brain. Let's go.
What is a Unary operator?
Unary operators are…
Let me assign you a task to learn something more and get closer to your goal of learning c++ as much as possible. For this task, the topic would be Assignment operators. The assignment itself means giving a task to someone. So let's start with the Assignment Operators and win it over.
What is an…
Arithmetic operators are one of the most basic and used operators anywhere in the program in the programming journey, irrespective of the language. They are used to perform arithmetic operations within the programming language.
Arithmetic operators are simply the mathematical operations performed using the programming language to implement in our code. They are binary as…
Keywords in C++ are the collection of reserved words and predefined identifiers. These are written in lower cases and have a special meaning defined by the compiler. There are 95 keywords in the C++ programming language, of which around 30 are unavailable in the C language. These are always used for a particular purpose in a program,…