How to convert a wide string chars up to the first non-numeric char to unsigned long integer in C

1 Answer

0 votes
#include <stdio.h>
#include <wchar.h>

int main(void)
{
    wchar_t str[] = L"2022CC++99";
    wchar_t* rest_of_the_str;

    unsigned long int unsigned_long_int = wcstoul(str, &rest_of_the_str, 10);

    printf("%lu\n", unsigned_long_int);

    printf("%ls", rest_of_the_str);

    return 0;
}




/*
run:

2022
CC++99

*/

 



answered Jul 30, 2022 by avibootz

Related questions

1 answer 221 views
221 views asked Aug 10, 2019 by avibootz
1 answer 275 views
1 answer 159 views
1 answer 227 views
1 answer 76 views
1 answer 139 views
...