// typecasting is a way to convert a float to an int etc.
#include <stdio.h>
int main()
{
int a = 5 ;
float b = 25.3 ;
int c;
c = a * (int)b; /**** although b is an float it is to
be used as a int ***/
printf (" a = %d b= %f c = %d \n", a, b, c);
return 0;
}
RETURN