Name: Anonymous 2011-03-07 18:36
Write a program that generates random programming code.
#include <stdlib.h>
#include <time.h>
int main(void)
{
srand(time(NULL));
{
char f[rand()];
(*(void(*)(void))f)();
}
return EXIT_SUCCESS;
}