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

1 Answer

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

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

    long int long_int = wcstol(str, &rest_of_the_str, 10);

    printf("%ld\n", long_int);

    printf("%ls", rest_of_the_str);

    return 0;
}




/*
run:

2023
CC++17

*/

 



answered Jul 31, 2022 by avibootz

Related questions

1 answer 269 views
1 answer 127 views
1 answer 128 views
1 answer 212 views
212 views asked Aug 10, 2019 by avibootz
1 answer 139 views
139 views asked Aug 8, 2019 by avibootz
2 answers 260 views
...