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

9 lines
134 B
C
Raw Normal View History

2018-11-08 19:37:04 +01:00
#include <stdlib.h>
int main() {
int z = rand();
for(int x=1; x < z; ++x) {
int y[x]; // Variable size
/* do something */
}
}