c++ logical operators code example
Example 1: how does ++operator works in c++
#include <stdio.h>
int main() {
int var1 = 5, var2 = 5;
// 5 is displayed
// Then, var1 is increased to 6.
printf("%d\n", var1++);
// var2 is increased to 6
// Then, it is displayed.
printf("%d\n", ++var2);
return 0;
}
Example 2: opperanf >> c++
packet >> rec1.getPosition().x >> rec1.getPosition().y;