This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
//#include <alloc.h> | |
int main(void){ | |
printf("Check the ram usage and press any to start the process"); | |
getchar(); | |
int c=0; | |
void *v=NULL; | |
v=malloc(1); | |
void (* va[33000]); | |
printf("Reached till array with size %d\n",sizeof(va)); |