#include int main() { printf(" enter two integers and ill add them \n"); int integer1; int integer2; scanf("%d,%d",&integer1, &integer2); int sum; sum = integer1+integer2; printf("sum is %d\n", sum);...







#include




int main()
{
printf(" enter two integers and ill add them \n");


int integer1;
int integer2;


scanf("%d,%d",&integer1, &integer2);


int sum;
sum = integer1+integer2;


printf("sum is %d\n", sum);


return 0;


}



when i run this code the sum is incorrect like when i type in 44 55 it says the sum is 109. whats wrong with the code?



Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here