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 C program to swap two numbers using functions August 2, 2023 C program to find the FIRST of a given grammer August 31, 2023 Program to implement Merge Sort August 5, 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.