Merge pull request #5285 from Georgehu716/fix-typo

[c/en] Fix typo
This commit is contained in:
ven 2025-03-26 10:10:40 +01:00 committed by GitHub
commit 1646c86efe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

2
c.md
View File

@ -42,7 +42,7 @@ enum days {SUN, MON, TUE, WED, THU, FRI, SAT};
// Enumeration values can also be specified // Enumeration values can also be specified
enum days {SUN = 1, MON, TUE, WED = 99, THU, FRI, SAT}; enum days {SUN = 1, MON, TUE, WED = 99, THU, FRI, SAT};
// MON gets 2 automatically, TUE gets 3, etc. // MON gets 2 automatically, TUE gets 3, etc.
// WED get 99, THU gets 100, FRI gets 101, etc. // WED gets 99, THU gets 100, FRI gets 101, etc.
// Import headers with #include // Import headers with #include
#include <stdlib.h> #include <stdlib.h>