tavito8169 tavito8169 19-02-2024 Computers and Technology contestada void integerPromotion(){ int i = 17; char c = 'c'; int sum; sum = i + c; printf("Value of sum : %d\n", sum );}Given the C data types and the concept of integer promotion, the above source code would compile and run without errors