Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function in C programming?
Is it possible to pass command line arguments to C programs? If yes, can you write down the prototype for main function with command line arguments?
This was asked today in my interview and I was not having any clue. Any pointer would be helpful.
I am wanting to extract variable names and their size (int, char and etc.) from a c file. Is there any way to extract that type of information?