You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would not compile on a compiler only supporting C99 without extensions. When compiling with -pedantic -std=c99 flags it would yield: warning: anonymous unions are a C11 extension [-Wc11-extensions]... Using anonymous unions and structs is not supported in C99 standard. It was introduced in C11 standard.
The text was updated successfully, but these errors were encountered:
For example:
This would not compile on a compiler only supporting C99 without extensions. When compiling with
-pedantic -std=c99
flags it would yield:warning: anonymous unions are a C11 extension [-Wc11-extensions]...
Using anonymous unions and structs is not supported in C99 standard. It was introduced in C11 standard.The text was updated successfully, but these errors were encountered: