Can any one explain increment and decrement also relational operator... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can any one explain increment and decrement also relational operator...

how the program looks like

13th Jan 2018, 10:00 AM
Endurance banigo
3 Answers
+ 13
Increment and decrement operatorsare unary operators that add or subtract one from their operand, respectively. They are commonly implemented in imperative programming languages. C-like languages feature two versions (pre- and post-) of each operator with slightly different semantics. https://en.m.wikipedia.org/wiki/Increment_and_decrement_operators Relational operator:- relational operatoris a programming language construct oroperator that tests or defines some kind of relation between two entities. These include numerical equality (e.g., 5 = 5) and inequalities (e.g., 4 ≥ 3). https://en.m.wikipedia.org/wiki/Relational_operator
13th Jan 2018, 10:07 AM
Abhivarshini Maddala
Abhivarshini Maddala - avatar
+ 6
https://www.sololearn.com/learn/CPlusPlus/1610/ https://www.sololearn.com/learn/2285/?ref=app I couldn't find the relational operators lesson for c++
13th Jan 2018, 10:54 AM
Karan Kumar
Karan Kumar - avatar
0
thanks guys
13th Jan 2018, 10:33 AM
Endurance banigo