Skip to content

Instantly share code, notes, and snippets.

View YousufProjs-exe's full-sized avatar
💭
A FY CSM likes C / Java and a kid learning and proving.

YousufProjs-exe

💭
A FY CSM likes C / Java and a kid learning and proving.
  • Joined Feb 25, 2026
View GitHub Profile
@YousufProjs-exe
YousufProjs-exe / Calculator.c
Created February 26, 2026 14:05
The calculator prompts users to enter two numbers and select an operation. It then performs the calculation and displays the result. The program is designed with clarity in mind, making it an excellent resource for beginners learning C programming concepts such as input/output handling, conditional statements, loops, and basic arithmetic logic.
#include <stdio.h>
int main()
{
int a, b, opt, res;
// declaring variables
printf("Welcome To Switch Case Calculator\n");
// Welcome command / Message