#include float f(int x) { return (x*x); } void main(int argc, char *argv[]) { float a; int b; a = 4.9; b = f(a); printf("a = %f, b = %d\n", a, b); }