sscanf function Demo
Understand how sscanf function works in C programming language with the help of an example. Here we demonstrate sscanf function in C language. If you have any questions, do feel free to comment.
#include<stdio.h>
#include<conio.h>
int main(){
char *str = "Learn C Online";
char *first, *second, *third;
clrscr();
sscanf(str,"%s %s %s", first, second, third);
printf("%s",first);
printf("\n%s",second);
printf("\n%s",third);
return 0;
}
Output:
Learn
C
Online
Also See:
Explanation on sscanf function

1 Response
[…] sscanf function Demo […]