#include using namespace std; int main() { char c = 'A'; int e; conversion(c,e); cout << c << " ; " << e << endl; // devrait afficher: A ; 65 double d=4.15; conversion(d,e); cout << d << " ; " << e << endl; // devrait afficher: 4.15 ; 4 conversion(e,d); cout << d << " ; " << e << endl; // devrait afficher: 4 ; 4 return 0; }