Type casting is a way to convert a variable from one data type to another data type
True
Which of the following is an example of using the cast operator?
(type_name) expression
It is considered good programming practice to use the cast operator whenever type conversions are necessary
True
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.
True
The usual arithmetic conversions are not performed for the assignment operators, nor for the logical operators && and ||
True