I am kinda new to the language and I thought of something stupid but really want to do it. I learn C at the moment and I want to try to make a program which will create variables continue-sly. like:
while(1) {
//here making variables.
}
My teacher said that it stores the variables in an empty space and since i am not reserving the heap what i want to do is reserve a big amount of variables until i take all the storage and my computer crashes. Is this possible?