🌙
Example 1: Simple program to detect arrow keys
#include <stdio.h>
#include <windows.h>  // Required for GetAsyncKeyState()

int main() {
    printf("Press arrow keys (ESC to quit):\n");

    while (1) {
        if (GetAsyncKeyState(VK_UP)) {
            printf("Up Arrow Pressed\n");
            Sleep(200); // Prevent too fast detection
        }
        if (GetAsyncKeyState(VK_DOWN)) {
            printf("Down Arrow Pressed\n");
            Sleep(200);
        }
        if (GetAsyncKeyState(VK_LEFT)) {
            printf("Left Arrow Pressed\n");
            Sleep(200);
        }
        if (GetAsyncKeyState(VK_RIGHT)) {
            printf("Right Arrow Pressed\n");
            Sleep(200);
        }
        if (GetAsyncKeyState(VK_ESCAPE)) {
            printf("Exiting...\n");
            break;
        }
    }

    return 0;
}

Output:

Press arrow keys (ESC to quit):
Up Arrow Pressed
Up Arrow Pressed
Down Arrow Pressed
Down Arrow Pressed
Down Arrow Pressed
Right Arrow Pressed
Right Arrow Pressed
Right Arrow Pressed
Left Arrow Pressed
Left Arrow Pressed
Left Arrow Pressed
Left Arrow Pressed
Exiting...
Example 2: Simple program to move character with arrow keys
#include <stdio.h>
#include <conio.h>  // For _getch()
#include <windows.h> // For system("cls")

int main() {
    int x = 10, y = 10; // Initial position

    while (1) {
        system("cls"); // Clears screen
        for (int i = 0; i < y; i++) printf("\n"); // Move down
        for (int i = 0; i < x; i++) printf(" ");  // Move right
        printf("@");  // Character to move

        char ch = _getch(); // Get key input

        if (ch == 27) break; // Exit if 'Esc' is pressed
        else if (ch == -32) { // Arrow keys start with -32
            ch = _getch(); // Get actual arrow key
            if (ch == 72 && y > 0) y--; // Up Arrow
            if (ch == 80 && y < 20) y++; // Down Arrow
            if (ch == 75 && x > 0) x--; // Left Arrow
            if (ch == 77 && x < 40) x++; // Right Arrow
        }
    }

    return 0;
}
Example 3: ATM works with keys
#include <stdio.h>
#include <conio.h>  // For getch()

float balance = 1000.0; // Initial balance

void withdrawMoney() {
    float amount;
    printf("\nEnter amount to withdraw: ");
    scanf("%f", &amount);
    if (amount > balance) {
        printf("Insufficient funds!\n");
    } else {
        balance -= amount;
        printf("Withdrawal successful! New balance: %.2f\n", balance);
    }
}

void depositMoney() {
    float amount;
    printf("\nEnter amount to deposit: ");
    scanf("%f", &amount);
    balance += amount;
    printf("Deposit successful! New balance: %.2f\n", balance);
}

void checkBalance() {
    printf("\nYour current balance is: %.2f\n", balance);
}

int main() {
    char choice;

    while (1) { // Infinite loop to keep showing options
        printf("\nSimple ATM System\n");
        printf("Press W to Withdraw\n");
        printf("Press D to Deposit\n");
        printf("Press B to Check Balance\n");
        printf("Press Q to Quit\n");

        choice = getch(); // Get user input instantly

        if (choice == 'W' || choice == 'w') {
            withdrawMoney();
        } else if (choice == 'D' || choice == 'd') {
            depositMoney();
        } else if (choice == 'B' || choice == 'b') {
            checkBalance();
        } else if (choice == 'Q' || choice == 'q') {
            printf("\nExiting... Thank you!\n");
            break; // Exit the loop when Q is pressed
        }
    }
    return 0;
}

Output:

Simple ATM System
Press W to Withdraw
Press D to Deposit
Press B to Check Balance
Press Q to Quit

Enter amount to deposit: 12000
Deposit successful! New balance: 13000.00

Simple ATM System
Press W to Withdraw
Press D to Deposit
Press B to Check Balance
Press Q to Quit

Enter amount to deposit: 13000
Deposit successful! New balance: 26000.00

Simple ATM System
Press W to Withdraw
Press D to Deposit
Press B to Check Balance
Press Q to Quit

Your current balance is: 26000.00

Simple ATM System
Press W to Withdraw
Press D to Deposit
Press B to Check Balance
Press Q to Quit

Simple ATM System
Press W to Withdraw
Press D to Deposit
Press B to Check Balance
Press Q to Quit
Example 4. Simple Calculator
#include <stdio.h>

// Function prototypes
float add(float a, float b);
float subtract(float a, float b);
float multiply(float a, float b);
float divide(float a, float b);

int main() {
    int choice;
    float num1, num2, result;

    do {
        // Display menu
        printf("\nSimple Calculator\n");
        printf("1. Addition\n");
        printf("2. Subtraction\n");
        printf("3. Multiplication\n");
        printf("4. Division\n");
        printf("5. Exit\n");
        printf("Enter your choice: ");
        scanf("%d", &choice);

        if (choice >= 1 && choice <= 4) {
            // Take input for numbers
            printf("Enter two numbers: ");
            scanf("%f %f", &num1, &num2);
        }

        // Perform the selected operation
        switch (choice) {
            case 1:
                result = add(num1, num2);
                printf("Result: %.2f\n", result);
                break;
            case 2:
                result = subtract(num1, num2);
                printf("Result: %.2f\n", result);
                break;
            case 3:
                result = multiply(num1, num2);
                printf("Result: %.2f\n", result);
                break;
            case 4:
                if (num2 != 0) {
                    result = divide(num1, num2);
                    printf("Result: %.2f\n", result);
                } else {
                    printf("Error: Division by zero is not allowed!\n");
                }
                break;
            case 5:
                printf("Exiting calculator. Goodbye!\n");
                break;
            default:
                printf("Invalid choice! Please enter a number between 1 and 5.\n");
        }
    } while (choice != 5); // Keep repeating until user selects exit

    return 0;
}

// Function definitions
float add(float a, float b) { return a + b; }
float subtract(float a, float b) { return a - b; }
float multiply(float a, float b) { return a * b; }
float divide(float a, float b) { return a / b; }

Output:


Simple Calculator
1. Addition
2. Subtraction
3. Multiplication
4. Division
5. Exit
Enter your choice: 1
Enter two numbers: 45 45
Result: 90.00

Simple Calculator
1. Addition
2. Subtraction
3. Multiplication
4. Division
5. Exit
Enter your choice: 2
Enter two numbers: 23 3
Result: 20.00

Simple Calculator
1. Addition
2. Subtraction
3. Multiplication
4. Division
5. Exit
Enter your choice: