#STUDENT RESPONSE ANI3-B
Hi Jerry,
Following is the program I wrote in an attempt to do the assignment.
//..Beginning of program..
main()
{
char fname[]="Jack";
char lname[]="Winberg";
char say[]="What is your first name?";
char say2[]="What is your last name?";
int bsize=sizeof(fname);
int bsize2=sizeof(lname);
Qstring(fname,bsize, say);
Qtext("Press to continue…");
Qstring(lname,bsize2,say2);
Qtext(Press to continue…");
printf(fname,bsize);
Qtext("Press to continue…");
unprintf();
printf(lname,bsize2);
Qtext("Press to continue…");
unprintf();
}
//..Program ends..
I get an error message that reads "Printf – too many parameters, after I am
prompted for the first and last names. Jerry, I am really a beginner at this –
HELP, please.
Jack
PS – This may be a duplicate of an incorrect posting I made – sorry.