Test size_t len=0; char string [11]; len readString (string, 10); printf("Read String (%s) of length (zu)\n", string, len); Answer: (penalty regime: 0, 10, 20, ... %) 1 #include 2 #include 4 size_t readString(char* string, size_t max_string_length) 5√ { ANDROHNEN FLOSONG 6 10 11 13 14 16 17} 19 20 Precheck Input 123 max_string_length += 3: fgets(string, max_string_length, stdin); int len 0; while(string[len]!= '\0') { len++; } string[len-1] '\0'; return len-1; 123456789 1234567890 Check Expected Read String (123) of length (3) Read String (123456789) of length (9) Show differences Input Result 123 Read S 12345678901234567890 Read String (1234567890) of length (10) Testing was aborted due to runtime errors. 3 tests not run due to previous errors. Got Read Str Read String (1234567890) of length (10) Read Str Read Str *** RUN *** stac *** Runt

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Need help finding the error in this code.

 
Test
size_t len=0;
char string [11];
len
readString (string, 10);
printf("Read String (%s) of length (zu)\n", string, len);
Answer: (penalty regime: 0, 10, 20, ... %)
1 #include <stdio.h>
2 #include <string.h>
4 size_t readString(char* string, size_t max_string_length)
5
{
8
9
10
11
-1 12 13 14 15 1617
16
17}
18
19
20
Precheck
Input
123
max_string_length += 3;
fgets(string, max_string_length, stdin);
int len = 0;
while(string[len] != '\0') {
len++;
}
string[len-1] = '\0';
return len-1;
123456789
Incorrect
1234567890
Check
Expected
Read String (123) of length (3)
Read String (123456789) of length (9)
Input Result
123 Read St
Testing was aborted due to runtime errors.
3 tests not run due to previous errors.
Show differences
Got
Read Str
Read Str
Read String (1234567890) of length (10) Read Str
12345678901234567890 Read String (1234567890) of length (10) *** RUN
*** stac
*** Runt
Transcribed Image Text:Test size_t len=0; char string [11]; len readString (string, 10); printf("Read String (%s) of length (zu)\n", string, len); Answer: (penalty regime: 0, 10, 20, ... %) 1 #include <stdio.h> 2 #include <string.h> 4 size_t readString(char* string, size_t max_string_length) 5 { 8 9 10 11 -1 12 13 14 15 1617 16 17} 18 19 20 Precheck Input 123 max_string_length += 3; fgets(string, max_string_length, stdin); int len = 0; while(string[len] != '\0') { len++; } string[len-1] = '\0'; return len-1; 123456789 Incorrect 1234567890 Check Expected Read String (123) of length (3) Read String (123456789) of length (9) Input Result 123 Read St Testing was aborted due to runtime errors. 3 tests not run due to previous errors. Show differences Got Read Str Read Str Read String (1234567890) of length (10) Read Str 12345678901234567890 Read String (1234567890) of length (10) *** RUN *** stac *** Runt
Expert Solution
steps

Step by step

Solved in 6 steps with 4 images

Blurred answer
Knowledge Booster
Binary Search Algorithm
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education