Examples with "as printf" and their translation in Frans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Code such as printf(foo); often indicates a bug, since foo may contain a % character.
Un code tel que printf(foo); indique souvent un bogue, car foo peut contenir un caractère « % ».
Instead it is a program specifically aimed at detecting format string bugs. The tool will attempt to find potential issues with the use of variadic functions within C and C++ source code, such as printf, fprintf and syslog.
L'outil essaiera de trouver des problèmes potentiels dans l'utilisation des fonctions variadiques (pouvant accepter un nombre variable d'arguments) dans du code C et C++, par exemple les fonctions printf, fprintf et syslog.
Enable tracing Tracing is a mechanism to automatically print values of the chosen expressions and continue execution when breakpoint is hit. You can think of it as printf debugging that does not require modifying the source.
Activer le traçage Le traçage est un mécanisme permettant d'afficher automatiquement la valeur des expressions choisies et de continuer l'exécution lorsqu'un point d'arrêt est rencontré. Vous pouvez le voir comme un débogage printf qui ne nécessite pas de modifier le code source.
Sometimes this notation is also used to remove ambiguities, for example to distinguish between the printf command that can also be indicated by printf(1) and the printf function in the C programming language, which can also be referred to as printf(3).
Il peut aussi arriver que cette notation soit utilisée pour lever des ambiguïtés, par exemple pour différencier la commande printf que l'on pourra désigner par printf(1) et la fonction printf du langage C, que l'on pourra désigner par printf(3).
Operates as printf() but accepts an array of arguments, rather than a variable number of arguments. Parameters format
Agit de la même façon que fprintf() excepté que vfprintf() accepte un tableau d'arguments, plutôt qu'un nombre variant d'arguments.
Andere resultaten
The first argument of the list will be interpreted as the printf format.
Le premier argument de la liste sera interprété comme le format de printf().
The string given as argument to printf was pushed on the the stack from last to first character before printf() was called.
La chaîne passée en argument à printf est placée sur la pile du dernier au premier caractère.
C++11 introduced variadic templates, which can take a variable number of arguments in a manner somewhat similar to variadic functions such as std::printf.
C++1x introduit les templates variadiques qui, à l'image des fonctions variadiques du langage C, peuvent supporter un nombre variable de types.
Sfmt - format string, has the same format as in printf() and other similar C functions, except length modifiers (l, ll, h, etc.)
Sfmt - chaîne de formatage comme dans printf() et d'autres fonctions C similaires, sauf que les modificateurs de longueur (l, ll, h, etc.)
The remaining arguments are a format, as in printf(3) and any arguments required by the format, except that the two character sequence %m will be replaced by the error message string strerror(errno).
Les arguments restants sont un format, comme celui de printf(3) et tous les arguments nécessaires pour ce format, sauf que les deux caractères %m seront automatiquement remplacés par le libellé d'erreur strerror(errno).
sh(1) no longer implements printf as a built-in command because it was considered less valuable compared to the other built-in commands (this functionality is, of course, still available through the printf(1) executable).
sh(1) n'implémente plus printf comme une built-in car elle a été considérée peu intéressante comparée aux autres built-ins (cette fonctionnalité est toujours disponible via l'exécutable printf(1)).
But printf is much more powerful than what we have seen before.
Mais printf est beaucoup plus puissant que ce que nous avons vu auparavant.
To display a text you can use printf or iprintf.
Pour afficher à l'écran un texte vous pouvez utiliser printf ou iprintf.