e102f20LectureMoreFunctions
e102f20LectureMoreFunctions
Fall 2020
Even More on Functions
Functions
}
What is in a heading?
type of value name
returned of parameter list
functio
n
return 0;
}
Rest of Program
int main ()
{
DisplayMessage(15); // function
call
return 0;
}
A void Function Does NOT
Return a Value
Yes
Can a function even call itself?