Read formatted data from string : Scanf « Console « C / ANSI-C






Read formatted data from string


#include <stdio.h>

int main(void)
{
  char str[80];
  int i;

  sscanf("hello 1 2 3 4 5", "%s%d", str, &i);
  printf("%s %d", str, i);

  return 0;
}

           
       








Related examples in the same category

1.Convert temperatures
2.Reading characters with scanf()
3.Pointer argument to scanf
4.Various read: string, float: scanf