Skip to content

Commit

Permalink
Update 2.5.1.c
Browse files Browse the repository at this point in the history
%d -> %u
  • Loading branch information
nswsnb authored Apr 3, 2024
1 parent 466e7ae commit 4270993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Chapter-02/2.5.1.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ int main() {
printf("SCHAR_MIN: %d\n", SCHAR_MIN);
printf("INT_MAX: %d\n", INT_MAX);
printf("INT_MIN: %d\n", INT_MIN);
printf("UINT_MAX: %d\n", UINT_MAX);
printf("UINT_MAX: %u\n", UINT_MAX);
printf("SHRT_MAX: %d\n", SHRT_MAX);
printf("SHRT_MIN: %d\n", SHRT_MIN);
printf("USHRT_MAX: %d\n", USHRT_MAX);
Expand All @@ -21,4 +21,4 @@ int main() {
printf("ULLONG_MAX: %llu\n", ULLONG_MAX);
printf("MB_LEN_MAX: %d\n", MB_LEN_MAX);
return 0;
}
}

0 comments on commit 4270993

Please sign in to comment.