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