printf() and scanf()

More conversions are possible for the C functions for reading and writing formatted data. The following listing shows these functions.

Listing: ANSI-C Read and Write Functions
int sprintf(char *s, const char *format, ...);
int vsprintf(char *s, const char *format, va_list args);

int sscanf(const char *s, const char *format, ...);