answersLogoWhite

0

'argc' and 'argv' in this line:

int main (int argc, char **argv)

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Does a function always require a parameter?

No. For example, function getpid never requires a parameter.


Is fragmentation an example of musical parameter?

No.


Is tempo an example of a musical parameter?

yes


What else is an example of articulation?

musical parameter


Which of the folloing is not an example of a music parameter?

Fragmentaion (Apex)


What Is An Example Of Musical Parameter?

A. Tempo B. Articulation C. Dynamics


How do you use parameter in a sentence?

Parameter is a noun meaning limits, boundaries or guidelines. Example: The parameters of this job include unloading the trucks but not driving the trucks.


What is pointer variable explaine?

If you mean example, then it is argv, which is the second parameter of function main.


Is A query that prompts for input whenever it is run is a run-time query?

It is referred to as a parameter query.It is referred to as a parameter query.It is referred to as a parameter query.It is referred to as a parameter query.It is referred to as a parameter query.It is referred to as a parameter query.It is referred to as a parameter query.It is referred to as a parameter query.It is referred to as a parameter query.It is referred to as a parameter query.It is referred to as a parameter query.


What is a pointer to a function?

An example might help you: extern int function1 (int parameter); extern int function2 (int parameter); int (*function_pointer_variable)(int parameter); function_pointer_variable = function1; (*function_pointer_variable)(12); /* call function1 */ function_pointer_variable = function2; (*function_pointer_variable)(33); /* call function2 */


What is the parameter of the Earth?

what is the parameter of earth


What is an example of array?

argv, which is the second parameter of function mainint main (int argc, char *argv[])