Top "Scanf" questions

Questions related to the scanf() family of functions in the C runtime library, which read and convert formatted data.

Correct way to use scanf / printf (and family) with fixed size types?

Reading this SO question, I started wondering - what is the correct way to use scanf/printf (and family) with …

c printf scanf fixed-size-types
Faster than scanf?

I was doing massive parsing of positive integers using scanf("%d", &someint). As I wanted to see if scanf …

c input scanf numeric-input
C Struct Array Input

I have the following struct typedef char String[256]; typedef struct { String name; int year; float price; } Book; Array of Books …

c printf scanf gets puts