talk-2018-11-uppsala/src/use_rbp/use_rbp.c

9 lines
134 B
C

#include <stdlib.h>
int main() {
int z = rand();
for(int x=1; x < z; ++x) {
int y[x]; // Variable size
/* do something */
}
}