
-----------------------------------
Geminias
Fri Sep 23, 2005 5:12 pm

question
-----------------------------------
compiler: mingw

when i compile this source code i get a "warning: no newline at end of file"

the prog still works, but i got this warning and was wondering what it means exactly.

#include 
using namespace std;

int division (int x, int z=2)
{
	int r;
	r= x/z;
	return (r);
}
int main ()
{
	std::cout