Tell me, I can not understand. There is a code
#include <stdio.h> int main(void) { float money; do { printf ("How much change should I give you?\n"); money = GetFloat(); } while (money<0); printf("%.2f\n", money); } How can I extract decimal places from the variable float?