#include int main() { printf("Type a number and a word: "); float num; char word[8]; scanf("%g %7s", &num, word); printf("%g and %s\n", num, word); }