By admin on January 29, 2012
Done with my computer science homework, can’t figure this one out.
Posted in Computer Science Homework | Tagged computer, computer science homework, done, homework, void function |
Incoming search terms:
three things that distinguish void function from main, three things distinguish a void function from main, what three thing distinguish a void function from a main function, what three things distinguish a void function from main
Are you looking for differences between:
void foo(void);
and
int main(int argc, char *argv[]);
?
1. main’s return value is int
2. main takes arguments, foo does not
3. main is usually a program’s entry point