Omit Array Length
If you don't mind possible undefined behavior, define an array C[]
(compiler assumes to have one element) and then rely upon the adjacent memory as usable space.
C[];main(){...}
If you don't mind possible undefined behavior, define an array C[]
(compiler assumes to have one element) and then rely upon the adjacent memory as usable space.
C[];main(){...}