Saturday, September 18, 2010

Function structure basic

//header file
//return data type
//function name
//input data type
//start function
//function content
//end function


#include

int main(void)
{
printf("this is my life" );
return 0;
}

No comments:

Post a Comment