top of page

Sum Of Two Numbers



#include <stdio.h>


void main() {


int num1, num2, sum;


printf("Enter the first number: ");

scanf("%d", &num1); // Read the first number from the user


printf("Enter the second number: ");

scanf("%d", &num2); // Read the second number from the user

sum = num1 + num2; // Calculate the sum


printf("The sum of %d and %d is %d\n", num1, num2, sum); //Result


}


Recent Posts

See All
Stack Using Queue

A stack can be implemented using two queues in C. The basic idea is to use one queue for enqueue operations and another for dequeue...

 
 
 
Queue Using Stack

A queue can be implemented using two stacks in C. The basic idea is to use one stack for enqueue operations and another for dequeue...

 
 
 
Queue Using Array

#include <stdio.h> #include<stdlib.h> #include<math.h> #define size 5 int queue[size]; int front = -1; int rear = -1; void enque(void);...

 
 
 

Comments


bottom of page