0
Can any one explain increment and decrement also relational operator...
how the program looks like
3 odpowiedzi
+ 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
+ 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++
0
thanks guys