write a C program to input two numbers and display them
priyan22804:
fast
Answers
Answered by
3
plz mark as brainliest answer
Attachments:
Answered by
2
Addition program in C
1- #include<stdio.h>
2- int main()
3- {
4- int a, b, c;
5- printf("Enter two numbers to add\n");
6-scanf("%d%d", &a, &b);
7- c = a + b;
8-printf("Sum of the numbers = %d\n", c);
⚜️ HOPE IT WILL HELP YOU ⚜️
1- #include<stdio.h>
2- int main()
3- {
4- int a, b, c;
5- printf("Enter two numbers to add\n");
6-scanf("%d%d", &a, &b);
7- c = a + b;
8-printf("Sum of the numbers = %d\n", c);
⚜️ HOPE IT WILL HELP YOU ⚜️
Similar questions