In int main(int argc, char *argv[]) what is argv[0]
a) The first argument passed into the program
b) The program name
c) You can't define main like that
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between strcpy() and strncpy()?
What is the difference between the functions rand(), random(), srand() and randomize()?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
Can you sort a set c++?
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
Which c++ compiler is best?
What do you mean by delegate? Can a user retain delegates?
Why c++ is called oop?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
What is flag in computer?
What are the advantage of using register variables?
Is c or c++ more useful?