8) Write a scanf statement that takes in a double floating-point value and store
ID: 3761670 • Letter: 8
Question
8) Write a scanf statement that takes in a double floating-point value and stores it in a variable called value. 9) Write an fprintf statement that prints three variables: a,b, and c, all doubles, to a line of a data file called datafile. 10) Identify any syntax error in the following function definition. If the syntax looks correct, simply write correct. Dieroll= rand()% 20 +1 11) Identify any syntax errors in the following function definition. If the syntax looks correct simply write Dieroll =srand()%20+1:Explanation / Answer
8. scanf("%lf", &value);
9. If fp is the pointer pointing to the file datafile, and is opened in a write mode, the statment to print the values is:
fprintf(fp, "%i %i %i", a, b, c);
10. Correct.
11. srand() is a function to seed the random number generator. It will not assign any value.
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.