C Program to Add Two Numbers

Hello coders, in this post we will how to write a C program to add two numbers. This is a very basic C program where the user is asked to enter two integers and then the program takes those inputs, stores them in two separate variables, and displays the sum of these integers.

As you already know that this site does not contain only c programming solutions here, you can also find the solution for other problems. I.e. Web Technology, Data StructuresRDBMS ProgramsJava Programs Solutions,  Fiverr Skills Test answersGoogle Course AnswersLinkedin AssessmentLeetcode Solutions, and Coursera Quiz Answers.

C Program to Add Two Numbers
C Program to Add Two Numbers

if you want to learn C programming free of cost please visit:

C Program to Add Two Numbers

#include<stdio.h>
int main() {
   int a, b, sum;
   printf("\nEnter two no: ");
   scanf("%d %d", &a, &b);
   sum = a + b;
   printf("Sum : %d", sum);
   return(0);
}

Output

Enter two no: 6 5
Sum : 11

Conclusion

I hope after going through this post, you understand how to write a C program to add two numbers, if there is any case program is not working and showing an error please let me know in the comment section.

Sharing Is Caring

Leave a Comment