418226-25766 og Jump to level 1 Write an if-else statement for the following If numDifference is equal to -15, execute t
Posted: Sat Jul 09, 2022 11:47 am
statement for the following If numDifference is equal to -15, execute totalDifference = -25. Else, execute totalDifference numDifference. 1 #include <stdio.h> 2 3 int main(void) ( 4 5 6 7 8 9 10 11 12) Check int totalDifference; int numDifference; scanf("%d", &numDifference); // Program will be tested with values: -14, -15, -16, -17. printf("%d", totalDifference); return 0; Try again 2
418226-25766 og Jump to level 1 Write an if-else