In this article iam going to talk about C++ Short Hand If Else (Ternary Operator) , also we can call it ternary operator, because it consists of three operands. And it can be used to replace multiple lines of code with a single line.
In this article iam going to talk about C++ Short Hand If Else (Ternary Operator), also we can call it ternary operator, because it consists of three operands. And it can be used to replace multiple lines of code with a single line.
C++ Tutorial From Basic to Advance Learn more C++ tutorial @ https://bit.ly/intmaincpp Java tutorial : http://bit.ly/2KMSzfD Learn C++ Tutorials in 9 Hours T...
In this C++ Tutorial we are going to talk about If Else Statement in C++ . using conditional statement we can execute some section of the code according to a condition. and particularly in this article we make some examples of if else condition. using if statement you can control if a program enters a section of code or not based on whether a given condition is true or false.
In this C# tutorial for complete beginners you will learn C# programming from scratch. We hope you enjoy our C Sharp beginners tutorial!
In this C++ Tutorials we are going to talk about Loops In C++, we are going to learn different C++ Loops like For Loop, While Loop and Do While Loop. There may be a situation, when you need to execute a block of code several number of times, using loops you can do these kind of functionalities. A loop statement allows us to execute a statement or group of statements multiple times. There are different types of loops that you can use in c++, for loop, while loop, do while loop, also there are different control statements like break and continue in c++ loops, using control statements we can change the execution of loops from its normal sequence.
LIKE | COMMENT | SHARE | SUBSCRIBE In this tutorial, I will discussed about delegates in C#. What is delegates ? In simple word delegates contains the refere...