Skip to content

Commit 45dfb7a

Browse files
committedFeb 18, 2019
Fix printf() statement
1 parent b5b9159 commit 45dfb7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎chapter07/7-4.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ int main(void) {
6969
int x, y, z;
7070
int nchar;
7171

72-
printf("Enter an integer: ");
72+
printf("Enter 3 integers: ");
7373
nchar = minscanf("%i %i %i", &x, &y, &z);
7474
printf("%i %i %i\n", x, y, z);
7575
printf("Number of elements: %i\n", nchar);

0 commit comments

Comments
 (0)
Failed to load comments.