Can we use any name in place of argv and argc as command line arguments?
Answer / Chhavi Sagar
No, argv (arguments vector) and argc (argument count) are reserved names for command-line arguments in C. These variables must be used exactly as specified.
| Is This Answer Correct ? | 0 Yes | 0 No |
In C language, a variable name cannot contain?
What is the difference between abs() and fabs() functions?
Magic square
Where are some collections of useful code fragments and examples?
How can we allocate array or structure bigger than 64kb?
What is calloc malloc realloc in c?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
explain what is fifo?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
Is null a keyword in c?
What is the purpose of main( ) in c language?
what are far pointers?