You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
272 B

#include <stdio.h>
#include <stdlib.h>
int
main (int argc, char *argv[])
{
int n = -1;
char c = '!';
int ret;
ret = sscanf ("0x", "%i%c", &n, &c);
printf ("ret: %d, n: %d, c: %c\n", ret, n, c);
if (ret != 2 || n != 0 || c != 'x')
abort ();
return 0;
}