Write a program to calculate the sum of two integers by inputting them through the keyboard.
কি-বোর্ডের মাধ্যমে দুটি পূর্ণ সংখ্যার ইনপুট নিয়ে তাদের যোগফল বের করার জন্য একটি প্রোগ্রাম লেখ।
Solution:
#include <stdio.h>
#include <conio.h>
main()
{
int a,b,sum;
printf ( "Enter the value of first number =");
scanf ("%d",&a);
printf ("Enter the value of second number =");
scanf ("%d",&b);
sum = a+b;
printf ("The result of sum = %d",sum);
return 0;
}
Screenshot of Source code(Code::Blocks):
Output:
Enter the value of first number =25
Enter the value of second number =25
The result of sum =40
Screenshot of Output(Code::Blocks):
Post a Comment