Retro C++ quiz #52
Given the following C code
#include <stdio.h>
int main(void) {
for (size_t i=0;i<6;++i) {
typedef int VLA[i++];
printf("%zu",i);
}
}
W/o checking what is the output?
A. 012345
B. 135
C. ¯\_(ツ)_/¯ undefined behavior
D. Varies on standard version