Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Créer un compte
Espaces de noms
Variantes
    Affichages
    Actions

      printf, fprintf, sprintf, snprintf

      De cppreference.com
      <c‎ |io

      This page has been machine-translated from the English version of the wiki usingGoogle Translate.

      The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions clickhere.

      Click here for the English version of this page

       
       
      Fichier d'entrée / sortie
      Fonctions
      Original:
      Functions
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Déposer accès
      Original:
      File access
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Entrée / sortie directe
      Original:
      Direct input/output
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      fread
      fwrite
      Entrée non formatée / sortie
      Original:
      Unformatted input/output
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Mise en forme d'entrée / sortie
      Original:
      Formatted input/output
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      scanf
      fscanf
      sscanf
      vscanf
      vfscanf
      vsscanf
      (C99)
      (C99)
      (C99)
      printf
      fprintf
      sprintf
      snprintf



      (C99)
      vprintf
      vfprintf
      vsprintf
      vsnprintf



      (C99)
      Fichier de positionnement
      Original:
      File positioning
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      ftell
      fgetpos
      fseek
      fsetpos
      rewind
      Erreur de manipulation
      Original:
      Error handling
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      clearerr
      feof
      ferror
      perror
      Les opérations sur les fichiers
      Original:
      Operations on files
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      remove
      rename
      tmpfile
      tmpnam
       
      Déclaré dans l'en-tête<stdio.h>
      int printf(constchar*format, ...);
      (1)
      int fprintf(FILE*stream,constchar*format, ...);
      (2)
      int sprintf(char*buffer,constchar*format, ...);
      (3)
      int snprintf(char*buffer,int buf_size,constchar*format, ...);
      (4)
      Charge les données à partir des emplacements donnés, les convertit en équivalents de chaînes de caractères et écrit les résultats d'une série de puits .
      Original:
      Loads the data from the given locations, converts them to character string equivalents and writes the results to a variety of sinks.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      1)
      Écrit les résultatsstdout .
      Original:
      Writes the results tostdout.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      2)
      Écrit les résultats dans un fichier ..stream flux
      Original:
      Writes the results to a file streamstream.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      3)
      Écrit les résultats dans unbuffer chaîne de caractères .
      Original:
      Writes the results to a character stringbuffer.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      4)
      Écrit les résultats dans unbuffer chaîne de caractères. Tout au plusbuf_size - 1 caractères sont écrits. La chaîne de caractères résultante sera terminé par un caractère nul, à moinsbuf_size est nul .
      Original:
      Writes the results to a character stringbuffer. At mostbuf_size - 1 characters are written. The resulting character string will be terminated with a null character, unlessbuf_size is zero.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.

      Sommaire

      [modifier]Paramètres

      stream -
      flux de fichier de sortie dans lequel écrire
      Original:
      output file stream to write to
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      buffer -
      pointeur vers une chaîne de caractères à écrire
      Original:
      pointer to a character string to write to
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      buf_size -
      jusqu'à buf_size - 1 caractères peuvent être écrites, ainsi que le terminateur null
      Original:
      up to buf_size - 1 characters may be written, plus the null terminator
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      format -
      pointeur vers une chaîne multi-octets terminée par NULL spécifiant la façon d'interpréter les données.
      La chaîne de format est constitué de caractères blancs, caractère non blanc (sauf%) et les spécifications de conversion. Chaque spécification de conversion a le format suivant:
      Original:
      The format string consists of whitespace characters, non-whitespace characters (except%) and conversion specifications. Each conversion specification has the following format:
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      • % caractère introductif
        Original:
        introductory% character
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • (en option) une ou plusieurs indicateurs qui modifient le comportement de la conversion:
        Original:
        (en option) one or more flags that modify the behavior of the conversion:
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • -: le résultat de la conversion est justifié à gauche dans le champ (par défaut, il est justifié à droite)
        Original:
        -: the result of the conversion is left-justified within the field (by default it is right-justified)
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • +: le signe de conversions signé est toujours ajouté au résultat de la conversion (par défaut le résultat est précédée par moins que si elle est négative)
        Original:
        +: the sign of signed conversions is always prepended to the result of the conversion (by default the result is preceded by minus only when it is negative)
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • Espace: si le résultat d'une conversion signée ne commence pas par un caractère de signe, ou est vide, l'espace est ajouté au résultat. Il est ignoré si l'indicateur+ est présent .
        Original:
        space: if the result of a signed conversion does not start with a sign character, or is empty, space is prepended to the result. It is ignored if+ flag is present.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • #:' autre forme de la conversion est effectuée. Voir le tableau ci-dessous pour effets exacts .
        Original:
        # :alternative form of the conversion is performed. See the table below for exact effects.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • 0: pour nombres entiers et décimaux conversions nombre de points, des zéros sont utilisés pour remplir le champ au lieu de l'espace' caractères. Pour les nombres à virgule flottante, elle est ignorée si la précision est explicitement spécifié. Pour les autres conversions en utilisant ces résultats pavillon à un comportement indéfini. Il est ignoré si l'indicateur- est présent .
        Original:
        0 : for integer and floating point number conversions, leading zeros are used to pad the field instead ofspace characters. For floating point numbers it is ignored if the precision is explicitly specified. For other conversions using this flag results in undefined behavior. It is ignored if- flag is present.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • Valeur (en option) entier ou* qui spécifie la largeur de champ minimale. Le résultat est rembourré avec de l'espace' caractères (par défaut), le cas échéant, sur la gauche lorsque justifié à droite, ou sur la droite si justifié à gauche. Dans le cas où on utilise*, la largeur est spécifiée par un argument supplémentaire deint type. Si la valeur de l'argument est négatif, il en résulte de la largeur- drapeau champ spécifié et positif .
        Original:
        (en option) integer value or* that specifies minimum field width. The result is padded withspace characters (by default), if required, on the left when right-justified, or on the right if left-justified. In the case when* is used, the width is specified by an additional argument of typeint. If the value of the argument is negative, it results with the- flag specified and positive field width.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • (en option). suivie par nombre entier ou* qui spécifie' précision de la conversion. Dans le cas où* est utilisé, la précision' est spécifiée par un argument supplémentaire deint type. Si la valeur de cet argument est négatif, il est ignoré. Voir le tableau ci-dessous pour les effets exacts de précision' .
        Original:
        (en option). followed by integer number or* that specifiesprecision of the conversion. In the case when* is used, theprecision is specified by an additional argument of typeint. If the value of this argument is negative, it is ignored. See the table below for exact effects ofprecision.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • (en option)' modificateur de longueur qui spécifie la taille de l'argument
        Original:
        (en option)length modifier that specifies the size of the argument
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • le format spécificateur de conversion
        Original:
        conversion format specifier
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      Les spécificateurs de format suivants sont disponibles:
      Original:
      The following format specifiers are available:
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Conversion
      specifier
      Explanation Argument type
      length modifierhhh (none)llljztL
      % writes literal%. The full conversion specification must be%%.N/AN/AN/AN/AN/AN/AN/AN/AN/A
      c writes asingle characterN/AN/Acharwchar_tN/AN/AN/AN/AN/A
      s writes acharacter stringN/AN/Achar*wchar_t*N/AN/AN/AN/AN/A
      d
      i
      convertit 'entier décimal' une signature dans le style [-] dddd .
      Original:
      converts a signeddecimal integer in the style[-]dddd.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Précision' spécifie le nombre minimal de chiffres à apparaître. La précision par défaut est1.
      Original:
      Precision specifies the minimum number of digits to appear. The default precision is1.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si les deux la valeur convertie et la précision sont0 les résultats de la conversion dans aucun des caractères .
      Original:
      If both the converted value and the precision are0 the conversion results in no characters.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      signedchar
      signedshort
      signedint
      signedlong
      signedlonglong
      N/A
      o
      convertit un signé 'entier octal' dans le style [-] oooo .
      Original:
      converts a signedoctal integer in the style[-]oooo.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Précision' spécifie le nombre minimal de chiffres à apparaître. La précision par défaut est1 .
      Original:
      Precision specifies the minimum number of digits to appear. The default precision is1.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si les deux la valeur convertie et la précision sont0 les résultats de la conversion dans aucun des caractères .
      Original:
      If both the converted value and the precision are0 the conversion results in no characters.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation' précision est augmentée si nécessaire, pour écrire une zéros .
      Original:
      In thealternative implementation precision is increased if necessary, to write one leading zero.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans ce cas, si les deux la valeur convertie et la précision sont0,0 unique est écrit .
      Original:
      In that case if both the converted value and the precision are0, single0 is written.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/A
      x
      X
      convertit 'entier hexadécimal' une signature dans le style [-] hhhh .
      Original:
      converts a signedhexadecimal integer in the style[-]hhhh.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour les lettres de conversionxabcdef sont used.
      Original:
      For thex conversion lettersabcdef are used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour les lettres de conversionXABCDEF sont used.
      Original:
      For theX conversion lettersABCDEF are used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Précision' spécifie le nombre minimal de chiffres à apparaître. La précision par défaut est1 .
      Original:
      Precision specifies the minimum number of digits to appear. The default precision is1.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si les deux la valeur convertie et la précision sont0 les résultats de la conversion dans aucun des caractères .
      Original:
      If both the converted value and the precision are0 the conversion results in no characters.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation'0x ou0X est préfixé à des résultats si la valeur convertie est différent de zéro .
      Original:
      In thealternative implementation0x or0X is prefixed to results if the converted value is nonzero.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/A
      u
      convertit un 'entier non signé décimal dans le style' dddd .
      Original:
      converts anunsigned decimal integer in the styledddd.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Précision' spécifie le nombre minimal de chiffres à paraître .
      Original:
      Precision specifies the minimum number of digits to appear.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La précision par défaut est1 .
      Original:
      The default precision is1.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si les deux la valeur convertie et la précision sont0 les résultats de la conversion dans aucun des caractères .
      Original:
      If both the converted value and the precision are0 the conversion results in no characters.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      unsignedchar
      unsignedshort
      unsignedint
      unsignedlong
      unsignedlonglong
      N/A
      f
      F
      convertit 'nombre à virgule flottante' pour la notation décimale dans le style [-] ddd.ddd .
      Original:
      convertsfloating-point number to the decimal notation in the style[-]ddd.ddd.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      ' Précision spécifie le nombre minimal de chiffres après le séparateur décimale .
      Original:
      Precision specifies the minimum number of digits to appear after the decimal point character.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La précision par défaut est6 .
      Original:
      The default precision is6.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation' point décimal est écrit, même si aucun chiffre ne le suit .
      Original:
      In thealternative implementation decimal point character is written even if no digits follow it.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversion de l'infini et not-a-number voir notes .
      Original:
      For infinity and not-a-number conversion style see notes.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/A
      double
      double
      N/AN/AN/AN/A
      longdouble
      e
      E
      convertit nombre à virgule flottante »à la notation d'exposant décimal .
      Original:
      convertsfloating-point number' to the decimal exponent notation.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversione [-] d.ddd'e ± dd est used.
      Original:
      For thee conversion style[-]d.ddde±dd is used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversionE [-] d.ddd'E ± dd est used.
      Original:
      For theE conversion style[-]d.dddE±dd is used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Celui-ci contient au moins deux chiffres, d'autres chiffres ne sont utilisés que si nécessaire .
      Original:
      The exponent contains at least two digits, more digits are used only if necessary.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si la valeur est0, l'exposant est également0 .
      Original:
      If the value is0, the exponent is also0.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      ' Précision spécifie le nombre minimal de chiffres après le séparateur décimale .
      Original:
      Precision specifies the minimum number of digits to appear after the decimal point character.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La précision par défaut est6 .
      Original:
      The default precision is6.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation' point décimal est écrit, même si aucun chiffre ne le suit .
      Original:
      In thealternative implementation decimal point character is written even if no digits follow it.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversion de l'infini et not-a-number voir notes .
      Original:
      For infinity and not-a-number conversion style see notes.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/AN/AN/AN/AN/A
      a
      A
      convertit nombre à virgule flottante »à la notation hexadécimale exposant .
      Original:
      convertsfloating-point number' to the hexadecimal exponent notation.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversiona [-]'0x h.hhh'p ± d est used.
      Original:
      For thea conversion style[-]0xh.hhhp±d is used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversionA [-]'0X h.hhh'P ± d est used.
      Original:
      For theA conversion style[-]0Xh.hhhP±d is used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Le chiffre hexadécimal premier est0 si l'argument n'est pas une valeur en virgule flottante normalisée .
      Original:
      The first hexadecimal digit is0 if the argument is not a normalized floating point value.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si la valeur est0, l'exposant est également0 .
      Original:
      If the value is0, the exponent is also0.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      ' Précision spécifie le nombre minimal de chiffres après le séparateur décimale .
      Original:
      Precision specifies the minimum number of digits to appear after the decimal point character.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La précision par défaut suffit pour une représentation exacte de la valeur .
      Original:
      The default precision is sufficient for exact representation of the value.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation' point décimal est écrit, même si aucun chiffre ne le suit .
      Original:
      In thealternative implementation decimal point character is written even if no digits follow it.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversion de l'infini et not-a-number voir notes .
      Original:
      For infinity and not-a-number conversion style see notes.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/AN/AN/AN/AN/A
      g
      G
      convertit 'nombre à virgule flottante en notation décimale ou exposant décimal en fonction de la valeur et de la précision' .
      Original:
      convertsfloating-point number to decimal or decimal exponent notation depending on the value and theprecision.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour la conversion de styleg conversion avece style ouf sera performed.
      Original:
      For theg conversion style conversion with stylee orf will be performed.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour la conversion de styleG conversion avecE style ouF sera performed.
      Original:
      For theG conversion style conversion with styleE orF will be performed.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      LaissezP égale à la précision si différente de zéro,6 si la précision n'est pas spécifiée, ou1 si la précision est0. Ensuite, si une conversion avec le styleE aurait un exposant deX:
      Original:
      LetP equal the precision if nonzero,6 if the precision is not specified, or1 if the precision is0. Then, if a conversion with styleE would have an exponent ofX:
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      • si P> X ≥ -4, la conversion est de stylef ouF et la précision P - 1 - X .
        Original:
        ifP > X ≥ −4, the conversion is with stylef orF and precisionP − 1 − X.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • autrement, la conversion est de stylee ouE et la précision P - 1 .
        Original:
        otherwise, the conversion is with stylee orE and precisionP − 1.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      Sauf' représentation alternative est demandé aux zéros de fin sont supprimés, aussi le point décimal est supprimée si aucune partie fractionnaire est laissée .
      Original:
      Unlessalternative representation is requested the trailing zeros are removed, also the decimal point character is removed if no fractional part is left.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversion de l'infini et not-a-number voir notes .
      Original:
      For infinity and not-a-number conversion style see notes.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/AN/AN/AN/AN/A
      n
      renvoie 'nombre de caractères écrits l'jusqu'ici par cet appel à la fonction .
      Original:
      returns thenumber of characters written' so far by this call to the function.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Le résultat est' écrit à la valeur pointée par l'argument .
      Original:
      The result iswritten to the value pointed to by the argument.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La spécification complète doit être%n .
      Original:
      The complete specification must be%n.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/Aint*N/AN/AN/AN/AN/AN/A
      p writes an implementation defined character sequence defining apointer.N/AN/Avoid*N/AN/AN/AN/AN/AN/A
      'Note':
      Original:
      Notes:
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Les fonctions de conversion de points flottants convertir l'infini àinf ouinfinity. Lequel est utilisé est defined.
      mise en œuvre
      Original:
      The floating point conversion functions convert infinity toinf orinfinity. Which one is used is implementation defined.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pas-un-nombre est converti ennan ounan(char_sequence). Lequel est utilisé est defined.
      mise en œuvre
      Original:
      Not-a-number is converted tonan ornan(char_sequence). Which one is used is implementation defined.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Les conversionsF,E,G,A sortieINF,INFINITY,NAN la place .
      Original:
      The conversionsF,E,G,A outputINF,INFINITY,NAN instead.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Original:
      pointer to a null-terminated multibyte string specifying how to interpret the data.
      La chaîne de format est constitué de caractères blancs, caractère non blanc (sauf%) et les spécifications de conversion. Chaque spécification de conversion a le format suivant:
      Original:
      The format string consists of whitespace characters, non-whitespace characters (except%) and conversion specifications. Each conversion specification has the following format:
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      • % caractère introductif
        Original:
        introductory% character
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • (en option) une ou plusieurs indicateurs qui modifient le comportement de la conversion:
        Original:
        (en option) one or more flags that modify the behavior of the conversion:
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • -: le résultat de la conversion est justifié à gauche dans le champ (par défaut, il est justifié à droite)
        Original:
        -: the result of the conversion is left-justified within the field (by default it is right-justified)
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • +: le signe de conversions signé est toujours ajouté au résultat de la conversion (par défaut le résultat est précédée par moins que si elle est négative)
        Original:
        +: the sign of signed conversions is always prepended to the result of the conversion (by default the result is preceded by minus only when it is negative)
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • Espace: si le résultat d'une conversion signée ne commence pas par un caractère de signe, ou est vide, l'espace est ajouté au résultat. Il est ignoré si l'indicateur+ est présent .
        Original:
        space: if the result of a signed conversion does not start with a sign character, or is empty, space is prepended to the result. It is ignored if+ flag is present.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • #:' autre forme de la conversion est effectuée. Voir le tableau ci-dessous pour effets exacts .
        Original:
        # :alternative form of the conversion is performed. See the table below for exact effects.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • 0: pour nombres entiers et décimaux conversions nombre de points, des zéros sont utilisés pour remplir le champ au lieu de l'espace' caractères. Pour les nombres à virgule flottante, elle est ignorée si la précision est explicitement spécifié. Pour les autres conversions en utilisant ces résultats pavillon à un comportement indéfini. Il est ignoré si l'indicateur- est présent .
        Original:
        0 : for integer and floating point number conversions, leading zeros are used to pad the field instead ofspace characters. For floating point numbers it is ignored if the precision is explicitly specified. For other conversions using this flag results in undefined behavior. It is ignored if- flag is present.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • Valeur (en option) entier ou* qui spécifie la largeur de champ minimale. Le résultat est rembourré avec de l'espace' caractères (par défaut), le cas échéant, sur la gauche lorsque justifié à droite, ou sur la droite si justifié à gauche. Dans le cas où on utilise*, la largeur est spécifiée par un argument supplémentaire deint type. Si la valeur de l'argument est négatif, il en résulte de la largeur- drapeau champ spécifié et positif .
        Original:
        (en option) integer value or* that specifies minimum field width. The result is padded withspace characters (by default), if required, on the left when right-justified, or on the right if left-justified. In the case when* is used, the width is specified by an additional argument of typeint. If the value of the argument is negative, it results with the- flag specified and positive field width.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • (en option). suivie par nombre entier ou* qui spécifie' précision de la conversion. Dans le cas où* est utilisé, la précision' est spécifiée par un argument supplémentaire deint type. Si la valeur de cet argument est négatif, il est ignoré. Voir le tableau ci-dessous pour les effets exacts de précision' .
        Original:
        (en option). followed by integer number or* that specifiesprecision of the conversion. In the case when* is used, theprecision is specified by an additional argument of typeint. If the value of this argument is negative, it is ignored. See the table below for exact effects ofprecision.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • (en option)' modificateur de longueur qui spécifie la taille de l'argument
        Original:
        (en option)length modifier that specifies the size of the argument
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • le format spécificateur de conversion
        Original:
        conversion format specifier
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      Les spécificateurs de format suivants sont disponibles:
      Original:
      The following format specifiers are available:
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Conversion
      specifier
      Explanation Argument type
      length modifierhhh (none)llljztL
      % writes literal%. The full conversion specification must be%%.N/AN/AN/AN/AN/AN/AN/AN/AN/A
      c writes asingle characterN/AN/Acharwchar_tN/AN/AN/AN/AN/A
      s writes acharacter stringN/AN/Achar*wchar_t*N/AN/AN/AN/AN/A
      d
      i
      convertit 'entier décimal' une signature dans le style [-] dddd .
      Original:
      converts a signeddecimal integer in the style[-]dddd.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Précision' spécifie le nombre minimal de chiffres à apparaître. La précision par défaut est1.
      Original:
      Precision specifies the minimum number of digits to appear. The default precision is1.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si les deux la valeur convertie et la précision sont0 les résultats de la conversion dans aucun des caractères .
      Original:
      If both the converted value and the precision are0 the conversion results in no characters.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      signedchar
      signedshort
      signedint
      signedlong
      signedlonglong
      N/A
      o
      convertit un signé 'entier octal' dans le style [-] oooo .
      Original:
      converts a signedoctal integer in the style[-]oooo.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Précision' spécifie le nombre minimal de chiffres à apparaître. La précision par défaut est1 .
      Original:
      Precision specifies the minimum number of digits to appear. The default precision is1.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si les deux la valeur convertie et la précision sont0 les résultats de la conversion dans aucun des caractères .
      Original:
      If both the converted value and the precision are0 the conversion results in no characters.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation' précision est augmentée si nécessaire, pour écrire une zéros .
      Original:
      In thealternative implementation precision is increased if necessary, to write one leading zero.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans ce cas, si les deux la valeur convertie et la précision sont0,0 unique est écrit .
      Original:
      In that case if both the converted value and the precision are0, single0 is written.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/A
      x
      X
      convertit 'entier hexadécimal' une signature dans le style [-] hhhh .
      Original:
      converts a signedhexadecimal integer in the style[-]hhhh.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour les lettres de conversionxabcdef sont used.
      Original:
      For thex conversion lettersabcdef are used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour les lettres de conversionXABCDEF sont used.
      Original:
      For theX conversion lettersABCDEF are used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Précision' spécifie le nombre minimal de chiffres à apparaître. La précision par défaut est1 .
      Original:
      Precision specifies the minimum number of digits to appear. The default precision is1.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si les deux la valeur convertie et la précision sont0 les résultats de la conversion dans aucun des caractères .
      Original:
      If both the converted value and the precision are0 the conversion results in no characters.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation'0x ou0X est préfixé à des résultats si la valeur convertie est différent de zéro .
      Original:
      In thealternative implementation0x or0X is prefixed to results if the converted value is nonzero.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/A
      u
      convertit un 'entier non signé décimal dans le style' dddd .
      Original:
      converts anunsigned decimal integer in the styledddd.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Précision' spécifie le nombre minimal de chiffres à paraître .
      Original:
      Precision specifies the minimum number of digits to appear.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La précision par défaut est1 .
      Original:
      The default precision is1.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si les deux la valeur convertie et la précision sont0 les résultats de la conversion dans aucun des caractères .
      Original:
      If both the converted value and the precision are0 the conversion results in no characters.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      unsignedchar
      unsignedshort
      unsignedint
      unsignedlong
      unsignedlonglong
      N/A
      f
      F
      convertit 'nombre à virgule flottante' pour la notation décimale dans le style [-] ddd.ddd .
      Original:
      convertsfloating-point number to the decimal notation in the style[-]ddd.ddd.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      ' Précision spécifie le nombre minimal de chiffres après le séparateur décimale .
      Original:
      Precision specifies the minimum number of digits to appear after the decimal point character.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La précision par défaut est6 .
      Original:
      The default precision is6.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation' point décimal est écrit, même si aucun chiffre ne le suit .
      Original:
      In thealternative implementation decimal point character is written even if no digits follow it.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversion de l'infini et not-a-number voir notes .
      Original:
      For infinity and not-a-number conversion style see notes.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/A
      double
      double
      N/AN/AN/AN/A
      longdouble
      e
      E
      convertit nombre à virgule flottante »à la notation d'exposant décimal .
      Original:
      convertsfloating-point number' to the decimal exponent notation.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversione [-] d.ddd'e ± dd est used.
      Original:
      For thee conversion style[-]d.ddde±dd is used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversionE [-] d.ddd'E ± dd est used.
      Original:
      For theE conversion style[-]d.dddE±dd is used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Celui-ci contient au moins deux chiffres, d'autres chiffres ne sont utilisés que si nécessaire .
      Original:
      The exponent contains at least two digits, more digits are used only if necessary.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si la valeur est0, l'exposant est également0 .
      Original:
      If the value is0, the exponent is also0.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      ' Précision spécifie le nombre minimal de chiffres après le séparateur décimale .
      Original:
      Precision specifies the minimum number of digits to appear after the decimal point character.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La précision par défaut est6 .
      Original:
      The default precision is6.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation' point décimal est écrit, même si aucun chiffre ne le suit .
      Original:
      In thealternative implementation decimal point character is written even if no digits follow it.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversion de l'infini et not-a-number voir notes .
      Original:
      For infinity and not-a-number conversion style see notes.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/AN/AN/AN/AN/A
      a
      A
      convertit nombre à virgule flottante »à la notation hexadécimale exposant .
      Original:
      convertsfloating-point number' to the hexadecimal exponent notation.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversiona [-]'0x h.hhh'p ± d est used.
      Original:
      For thea conversion style[-]0xh.hhhp±d is used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversionA [-]'0X h.hhh'P ± d est used.
      Original:
      For theA conversion style[-]0Xh.hhhP±d is used.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Le chiffre hexadécimal premier est0 si l'argument n'est pas une valeur en virgule flottante normalisée .
      Original:
      The first hexadecimal digit is0 if the argument is not a normalized floating point value.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Si la valeur est0, l'exposant est également0 .
      Original:
      If the value is0, the exponent is also0.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      ' Précision spécifie le nombre minimal de chiffres après le séparateur décimale .
      Original:
      Precision specifies the minimum number of digits to appear after the decimal point character.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La précision par défaut suffit pour une représentation exacte de la valeur .
      Original:
      The default precision is sufficient for exact representation of the value.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Dans la variante de réalisation' point décimal est écrit, même si aucun chiffre ne le suit .
      Original:
      In thealternative implementation decimal point character is written even if no digits follow it.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversion de l'infini et not-a-number voir notes .
      Original:
      For infinity and not-a-number conversion style see notes.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/AN/AN/AN/AN/A
      g
      G
      convertit 'nombre à virgule flottante en notation décimale ou exposant décimal en fonction de la valeur et de la précision' .
      Original:
      convertsfloating-point number to decimal or decimal exponent notation depending on the value and theprecision.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour la conversion de styleg conversion avece style ouf sera performed.
      Original:
      For theg conversion style conversion with stylee orf will be performed.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour la conversion de styleG conversion avecE style ouF sera performed.
      Original:
      For theG conversion style conversion with styleE orF will be performed.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      LaissezP égale à la précision si différente de zéro,6 si la précision n'est pas spécifiée, ou1 si la précision est0. Ensuite, si une conversion avec le styleE aurait un exposant deX:
      Original:
      LetP equal the precision if nonzero,6 if the precision is not specified, or1 if the precision is0. Then, if a conversion with styleE would have an exponent ofX:
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      • si P> X ≥ -4, la conversion est de stylef ouF et la précision P - 1 - X .
        Original:
        ifP > X ≥ −4, the conversion is with stylef orF and precisionP − 1 − X.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      • autrement, la conversion est de stylee ouE et la précision P - 1 .
        Original:
        otherwise, the conversion is with stylee orE and precisionP − 1.
        The text has been machine-translated viaGoogle Translate.
        You can help to correct and verify the translation. Clickhere for instructions.
      Sauf' représentation alternative est demandé aux zéros de fin sont supprimés, aussi le point décimal est supprimée si aucune partie fractionnaire est laissée .
      Original:
      Unlessalternative representation is requested the trailing zeros are removed, also the decimal point character is removed if no fractional part is left.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pour le style de conversion de l'infini et not-a-number voir notes .
      Original:
      For infinity and not-a-number conversion style see notes.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/AN/AN/AN/AN/A
      n
      renvoie 'nombre de caractères écrits l'jusqu'ici par cet appel à la fonction .
      Original:
      returns thenumber of characters written' so far by this call to the function.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Le résultat est' écrit à la valeur pointée par l'argument .
      Original:
      The result iswritten to the value pointed to by the argument.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      La spécification complète doit être%n .
      Original:
      The complete specification must be%n.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      N/AN/Aint*N/AN/AN/AN/AN/AN/A
      p writes an implementation defined character sequence defining apointer.N/AN/Avoid*N/AN/AN/AN/AN/AN/A
      'Note':
      Original:
      Notes:
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Les fonctions de conversion de points flottants convertir l'infini àinf ouinfinity. Lequel est utilisé est defined.
      mise en œuvre
      Original:
      The floating point conversion functions convert infinity toinf orinfinity. Which one is used is implementation defined.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Pas-un-nombre est converti ennan ounan(char_sequence). Lequel est utilisé est defined.
      mise en œuvre
      Original:
      Not-a-number is converted tonan ornan(char_sequence). Which one is used is implementation defined.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      Les conversionsF,E,G,A sortieINF,INFINITY,NAN la place .
      Original:
      The conversionsF,E,G,A outputINF,INFINITY,NAN instead.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      ... -
      arguments spécifiant les données à imprimer
      Original:
      arguments specifying data to print
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.

      [modifier]Retourne la valeur

      1-3)
      nombre de caractères écrits si la valeur réussie ou négatif si une erreur est survenue .
      Original:
      number of characters written if successful or negative value if an error occurred.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.
      4)
      nombre de caractères écrits si la valeur réussie ou négatif si une erreur s'est produite. Si la chaîne résultante est tronquée en raison de la limitebuf_size, la fonction retourne le nombre total de caractères (sans compter le zéro-octet de terminaison) qui aurait été écrite, si la limite n'a pas été imposée .
      Original:
      number of characters written if successful or negative value if an error occurred. If the resulting string gets truncated due tobuf_size limit, function returns the total number of characters (not including the terminating null-byte) which would have been written, if the limit was not imposed.
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.

      [modifier]Exemple

      #include <stdio.h> int main(){    printf("Strings:\n");constchar* s="Hello";    printf("\t.%10s.\n\t.%-10s.\n\t.%*s.\n", s, s,10, s);     printf("Characters:\t%c %%\n",65);     printf("Integers\n");    printf("Decimal:\t%i %d %.6i %i %.0i %+i %u\n",1,2,3,0,0,4,-1);    printf("Hexadecimal:\t%x %x %X %#x\n",5,10,10,6);    printf("Octal:\t%o %#o %#o\n",10,10,4);     printf("Floating point\n");    printf("Rounding:\t%f %.0f %.32f\n",1.5,1.5,1.3);    printf("Padding:\t%05.2f %.2f %5.2f\n",1.5,1.5,1.5);    printf("Scientific:\t%E %e\n",1.5,1.5);    printf("Hexadecimal:\t%a %A\n",1.5,1.5);}

      Résultat :

      Strings:    .     Hello.    .Hello     .    .     Hello.Characters:     A %IntegersDecimal:        1 2 000003 0  +4 4294967295Hexadecimal:    5 a A 0x6Octal:          12 012 04Floating pointRounding:       1.500000 2 1.30000000000000004440892098500626Padding:        01.50 1.50  1.50Scientific:     1.500000E+00 1.500000e+00Hexadecimal:    0x1.8p+0 0X1.8P+0

      [modifier]Voir aussi

      impressions formaté àstdout, un flux ou un fichier en utilisant buffer
      liste d'arguments variable
      Original:
      prints formatted output tostdout, a file stream or a buffer
      using variable argument list
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.

      (fonction)[edit]
      écrit une chaîne de caractères dans un flux fichier
      Original:
      writes a character string to a file stream
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.

      (fonction)[edit]
      lit l'entrée en forme à partirstdin, un flux de fichier ou un tampon
      Original:
      reads formatted input fromstdin, a file stream or a buffer
      The text has been machine-translated viaGoogle Translate.
      You can help to correct and verify the translation. Clickhere for instructions.

      (fonction)[edit]
      C++ documentation forprintf,fprintf,sprintf,snprintf
      Récupérée de «https://fr.cppreference.com/mwiki/index.php?title=c/io/fprintf&oldid=47164 »
      Navigation
      Boîte à outils
      • Autres langues

      [8]ページ先頭

      ©2009-2025 Movatter.jp