About 9,220,000 results
Open links in new tab
  1. C Input/Output: printf () and scanf () - Programiz

    In this tutorial, you will learn to use scanf () function to take input from the user, and printf () function to display output to the user with the help of examples.

  2. C printf () and scanf () functions - Tutorials Class

    printf () and scanf () functions are used for input and output in C language. Learn about printf () and scanf () functions syntax with example.

  3. scanf in C - GeeksforGeeks

    Oct 13, 2025 · The code scanf ("% [^\n]", name); reads a full line of text including spaces from the user and stores it in the array name. The printf ("%s", name); then prints the entered text …

  4. Comprehensive Guide to ‘printf’ and ‘scanf’ in C - Medium

    Dec 23, 2024 · The `printf` and `scanf` functions are fundamental in C programming, serving as the primary tools for outputting data and reading user input. Understanding their behavior in …

  5. Functions printf () and scanf () in C - BeginnersBook

    Jul 20, 2022 · In this tutorial, you will learn, what are these functions, how to use them in C programs. The scanf() and printf() functions are used for input and output in c programs …

  6. Formatted Input/Output in C Programming (With Examples)

    Learn Formatted Input/Output in C Programming with examples in this tutorial. Understand how to use printf and scanf for efficient data handling in C.

  7. C Input/Output functions - printf (), scanf (), etc. | Studytonight

    Sep 17, 2024 · Learn how to take user input in C programming and how to display output in c programming. printf (), scanf (), getchar (), putchar (), gets () and puts () are the functions used …

  8. Understanding printf () and scanf () Functions in C Language

    Learn the basics of printf () and scanf () in C with easy examples, format specifiers, and tips to help beginners understand input-output in C programmi

  9. Printf and Scanf in C - Naukri Code 360

    Aug 13, 2025 · In this article, we will discuss both Printf and Scanf in C, with examples to make you understand how they work properly.

  10. scanf function in cprintf and scanf function in C Programming

    Sep 23, 2024 · scanf function in c: The printf and scanf functions are the most popular input and output functions in C language. Both functions are inbuilt library functions which is part of …