Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
int main(void) {
int arr_int[65000];
float too_big[20000000];
double way_too_large[20000000];
printf("Stack size = %d + %d + %d\n",sizeof(int) * 65000,sizeof(float) * 20000,sizeof(double) * 20000000);
printf("Hmm...stack suffices.\n");
return 0;
}