hi all,
trying to get up to speed w/ the basics, but could use some guidance. i'm making a console application that accepts command line paramaters. i want to pass the argv to a function and then process the paramaters there. how do i do that? the main function looks like...
how should i declare the function head?
how should i pass argv into it?
thanks,
glenn
trying to get up to speed w/ the basics, but could use some guidance. i'm making a console application that accepts command line paramaters. i want to pass the argv to a function and then process the paramaters there. how do i do that? the main function looks like...
Code:
int main(int argc, char* argv[])
how should i declare the function head?
how should i pass argv into it?
thanks,
glenn