this post was submitted on 14 Jun 2024
495 points (95.6% liked)

Programmer Humor

18961 readers
1197 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 6 points 2 months ago (3 children)

Ackshually you don't need a type qualifier in C

[–] [email protected] 7 points 2 months ago* (last edited 2 months ago)

Well, assuming you meant type specifier, at least not before C99. After that it is required. C23 explicitly states that a type specifier is required for all declarations.

If you actually meant type qualifier, then no. That was never required.

[–] [email protected] 3 points 2 months ago (1 children)
[–] [email protected] 4 points 2 months ago

Defaults to int if I'm not mistaken.