#include /*This prgram shows how you can recast a variable into another data type */ main() { int a; int b; a = 5; b = 3; printf("%d divided by %d equals %f\n", a, b, (float)a/b); }