#include int main(void){ int j; float f; f = 13.6996; j = f; /* convert float to int */ printf("%f %d", f, j); return 0;}