This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Exercises/C6/inc_dec_examples.c

22 lines
510 B
C
Raw Normal View History

2022-04-08 15:12:38 +00:00
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
// Declare some variables
int a, b;
// Note: Order of a,b indicates the order in which operations are carried out on execution
// Increment operators
b = 3;
a = ++b; // b is now 4, a is also 4
a = b++; // a is 4, b is now 5,
// Decrement operators (reset a back to 3)
b = 3;
a = b--; // a is 3, b is now 2
a = --b; // b is now 1, a is also 1
return 0; // Exit from main
}