Hi again i. Read in the documentation
About function that call themselves
What exactly it mean call themselves
I tried to explore this in google and still dont get it
And also the prototype function
I want to mention again c++ is my first expirience
With programming so my questions might seem a bit
Obvious to guys with expirience
longlongint factorial_function( shortint n )
{
if( n > 1 ) return( n - 1 );
elsereturn( 1 );
}
Edit its also called a ternary operator. http://en.wikipedia.org/wiki/%3F:
variable = condition ? if_true : if_false;
as in if the condition is true variable = is_true;
if condition is false variable = is_false;