Wikipedia:WikiProject C/stdio.h/printf

printf is a C function belonging to the ANSI C standard library, and included in the file stdio.h. Its purpose is to print formatted text to the standard output

printf is a C function belonging to the ANSI C standard library, and included in the file stdio.h. Its purpose is to print formatted text to the standard output stream. Hence the "f" in the name stands for "formatted".

It takes the following unusual syntax:

   printf(string format, items-to-format)

It can take one or more arguments, where the first argument is a string to be written. This string can contain special formatting codes which are replaced by items from the remainder of the arguments. For example, an integer can be printed using the "%d" formatting code, e.g.:

   printf("%d", 42);

This formats the integer "42" as text and prints it to the standard output.

printf is typically the first function any C programmer encounters, because it is the only function which appears in the standard Hello world program:

   #include <stdio.h>

   int main(void)
   {
       printf("Hello, world!\n");
       return 0;
   }

The "Hello world" program uses printf in its simplest form: by simply passing it a string with no special formatting codes, and no extra arguments. The input text is simply printed to the screen. (Note that the "\n" special escape sequence is converted into a newline character.)

See also

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.