where is the right place to put main()? before or after my function
definitions? Because i used to write Pascal code, i stick main() last
(in Pascal, the main begin..end pair must be the last function in the program).
does it matter? seems more logical to define your prototypes, write them,
then the main program.

A:
/********/

int main (){}

int foo(){}

int bar(){}
/*********/

B:
/**********/
int foo()
{
}

int bar(){}

int main(){}
/**********/
-- 
+++ Divide By Cucumber Error, Please Re-Install Universe And Reboot +++
[EMAIL PROTECTED]                    http://x-map.home.ml.org

Reply via email to