C program to find sum of two numbers Post author:Educate Post published:July 31, 2023 Post category:C and C++ Post comments:0 Comments #include #include void main() { int a,b,s; clrscr(); printf(“Enter two no: ”); scanf(“%d%d",&a,&b); s=a+b; printf(“sum=%d”,s); getch(); } Output: Enter two no: 5 6 sum=11 You Might Also Like Program to implement Kruskal’s algorithm August 7, 2023 Program to find out maximum and minimum using divide and conquer method August 5, 2023 C program to find factorial of a number using functions August 2, 2023 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.