Command Line Arguments - Programming

Q1:

Does there exist any way to make the command-line arguments available to other functions without passing them as arguments to the function?

A Yes

B No

ANS:A - Yes

Using the predefined variables _argc, _argv. This is a compiler dependent feature. It works in TC/TC++ but not in gcc and visual studio.