#include int main() { int i; double f; char c; printf("Enter an integer and a float, then Y or N\n> "); scanf("%d%lf %c", &i, &f, &c); printf("You entered:\n"); printf("i = %d, f = %f, c = %c\n", i, f, c); }