Skip to content

Latest commit

 

History

History

52

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Exercise 6.52

Given the following declarations,

void manip(int, int);
double dobj;

what is the ank (§ 6.6.1) of each conversion in the following calls?

(a) manip('a', 'z');
(b) manip(55.4, dobj);

Solution

(a) Integral promotion (b) Conversion to another arithmetic type