An example of a conversion specification follows:
    #include <stdio.h>
    main ()
    {
       int   temp, temp2;
       fscanf(stdin, "%d %d", &temp, &temp2);
       printf("The answers are %d, and %d.", temp, temp2);
    }
    Consider a file, designated by stdin, with the following
    contents:
    4 17
    The example conversion specification produces the following
    result:
    The answers are 4, and 17.