First of all im new here so Hi all..
im also new to c/c++ have been a java php and actionscript developer for some time now and finally have time to learn something new so im gonna go for c++ im just tryna get familiar with everything but i ran into some (to me) weird results.
i was trying to make a recursive function but i kept getting errors so i stripped everything out of the function and still got an error can anyone explain me why the following fails everytime after calling the function for the 262058 time with a segmentation fault.
void recursive() {
recursive();
}
int main( int argc, char **argv ) {
recursive();
}
its probably very obvious and easy (just not to me)
thanks in advance,
Yrm