
-----------------------------------
sheepo39
Fri Dec 11, 2009 5:46 pm

Don't really understand passing function arguments
-----------------------------------
I'm working through a beginning C++ book, and I'm at passing function arguments, and I don't really understand it.

The code example is 

#include 
using namespace std ;

float fToC ( float degreesF = 32.0 ) ;


// A C++ application demonstrating passing arguments in functions


int main()
{
	float fahrenheit, celsius ;
	
	cout > fahrenheit ;
	
	celsius = fToC( fahrenheit ) ;
	
	cout 