I had one function to access string array. I don't know to
write it to make if functionable. BTW,the string will be
access (read only) in funtion.
Now I use:
print_occur_arc hive_files(char argv[][])
Can I use:
print_occur_arc hive_files(char *argv [])
or
print_occur_arc hive_files(char & *argv[])
I like to use reference if possible since it won't need decompress
the -.
--Thanks.
write it to make if functionable. BTW,the string will be
access (read only) in funtion.
Now I use:
print_occur_arc hive_files(char argv[][])
Can I use:
print_occur_arc hive_files(char *argv [])
or
print_occur_arc hive_files(char & *argv[])
I like to use reference if possible since it won't need decompress
the -.
--Thanks.
Comment