0

How to solve

Fill in the blanks to calculate the sum of the variables a and b store it in the sum variable, then output it. int a = 8; int b = 56; int sum a b; printf(" " sum

3rd Oct 2024, 10:40 AM
Sher Agha Hewadmal
1 ответ
+ 2
int a = 8; int b = 56; int sum = a+b; printf("%d",sum); Here, %d can be replaced with %i, the output will not be affected.
3rd Oct 2024, 11:01 AM
GANGSTER
GANGSTER - avatar