int main( void ) { int a,b,c,d,e; int n = sscanf( "11 22 33 xx 44", "%d %d %d %d %d", &a,&b,&c,&d,&e ); printf( "%d\n", n ); }