This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: scanf "%n" format specifier is not supported


Hi Alexander,


Alexander Chernov wrote:
> ...For example, the following piece of code
> left variable n value as 0 instead of 2. ...
>
> #include <stdio.h>
> #include <string.h>
> 
>   int
> main()
> {
>   int v = 0, n = 0, r = 0;
> 
>   r = sscanf("32", "%d %n", &v, &n);
>   printf("v = %d\nn = %d\nr = %d\n", v, n, d);
>   return 0;
> }

The problem is that the scanner gives up as it doesn't find the space
that your format string specifies. The %n is not processed, and so n is
left unchanged. Try this:

#include <stdio.h>
#include <string.h>

int
main()
{
  int v = 0, n = 0, r = 0;

  r = sscanf("32", "%d %n", &v, &n);
  printf("v = %d\nn = %d\nr = %d\n", v, n, r);

  r = sscanf("32", "%d%n", &v, &n);
  printf("v = %d\nn = %d\nr = %d\n", v, n, r);

  return 0;
}

Should output

v = 32
n = 0
r = 1
v = 32
n = 2
r = 1


so long, benny
======================================
Benjamin Riefenstahl (benny@crocodial.de)
Crocodial Communications EntwicklungsGmbH
Ruhrstraße 61, D-22761 Hamburg, Germany
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]