Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
size_t is an unsigned type, so %zd would be misleading for many values:
#include <cstdint> #include <cstdio> int main() { printf("%zd", SIZE_MAX); }
The text was updated successfully, but these errors were encountered:
Thanks @delan! This is a pretty major erratum. I've added a note for the first occurrence on Page 41, but it needs to be fixed all over the place.
Sorry, something went wrong.
Closes #87 #88 #89 #90 #91 #92 #93 #94 #95 #96 #97 #98 #100 #101 #102
255fcb6
Closes JLospinoso#87 JLospinoso#88 JLospinoso#89 JLospinoso#90 JLospi…
76cde48
…noso#91 JLospinoso#92 JLospinoso#93 JLospinoso#94 JLospinoso#95 JLospinoso#96 JLospinoso#97 JLospinoso#98 JLospinoso#100 JLospinoso#101 JLospinoso#102
No branches or pull requests
size_t is an unsigned type, so %zd would be misleading for many values:
The text was updated successfully, but these errors were encountered: