sscanf and sprintf
#include <stdio.h>
int main() {
const char *input = "42 Alice";
int number;
char name[20];
int result = sscanf(input, "%d %s", &number, name);
("Parsed number: %d\n", number);
printf("Parsed name: %s\n", name);
printf("Number of items matched: %d\n", result);
printfreturn 0;
}
The above code produces following result:
: 42
Parsed number: Alice
Parsed name: 2 Number of items matched
#include <stdio.h>
int main() {
char buffer[100];
int age = 30;
char name[] = "John";
(buffer, "%s is %d years old.", name, age);
sprintf("%s\n", buffer);
printfreturn 0;
}
The above code produces following result:
30 years old. John is