C Online Compiler
Example: Basic Increment and Decrement Example in C
C
C++
C#
Java
Python
PHP
main.c
STDIN
Run
// Basic Increment and Decrement Example #include <stdio.h> int main() { // Step 1: Initialize a variable int counter = 5; printf("Initial counter value: %d\n", counter); // Step 2: Increment the variable counter++; // Same as counter = counter + 1; printf("Counter after increment: %d\n", counter); // Step 3: Decrement the variable counter--; // Same as counter = counter - 1; printf("Counter after decrement: %d\n", counter); return 0; }
Output
Clear
ADVERTISEMENTS