/* The purpose of this program is to show type conversion */
main()
{
int a = 2;
float x = 17.1, y = 8.95, z;
char c;

   c = (char)a + (char)x;
   c = (char)(a + (int)x);
   c = (char)(a + x);
   c = a + x;

   z = (float)((int)x * (int)y);
   z = (float)((int)(x * y));
   z = x * y;

}
COMBINE.C
Κατεβάστε το πρόγραμμα στον υπολογιστή σας