Guest_imported
New member
- Jan 1, 1970
- 0
How do you call a function? Can you give me a simple example? Thankz
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 <iostream.h>
float half(float what)
{
return what/2;
}
int main(void)
{
cout << half(4.2) << endl;
return 0;
}