#include #define BUFLEN 512 int main () { /* variable declarations */ int i; char name[BUFLEN]; int num; printf("What is your name:\n"); scanf("%s",name); /* & operator not used here */ printf("What is your favorite number:\n"); scanf("%d",&num); /* & operator used here */ for ( i=0; i