# Add/del variadic arguments

Hotkeys

**Numpad+**

Add variadic argument

**Numpad-**

Delete variadic argument

This command adds or removes an argument of a variadic call. It is impossible to detect the correct number of variadic arguments in all cases, and this command can be used to fix wrongly detected arguments. It is available only when the cursor is located on a call to a variadic function (like printf). The decompiler automatically detects the argument locations, the user can only increase or decrease their number.

This command is useful if the decompiler determines the number of arguments incorrectly. For example:

```
        printf("This is a test call: %d\n");
```

apparently lacks an argument. Pressing Numpad+ modifies it:

```
        printf("This is a test call: %d\n", v1);
```

If too many arguments are added to a variadic call, decompilation may [fail](https://github.com/HexRaysSA/docs/blob/IDA-8.4/user-guide/decompiler/decompiler-manual/failures.shtml#11). Three methods to correct this situation exist:

* undo the last action (hotkey Ctrl-Z)
* position the cursor on the wrongly modified call and press Numpad-
* or use [Edit, Other, Reset decompiler information](https://github.com/HexRaysSA/docs/blob/IDA-8.4/user-guide/decompiler/decompiler-manual/interactive.shtml#07) to reset the forced varidic argument counts.

See also: [interactive operation](https://github.com/HexRaysSA/docs/blob/IDA-8.4/user-guide/decompiler/decompiler-manual/interactive.shtml)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hex-rays.com/8.4/user-guide/decompiler/interactive/cmd_variadic.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
