How to locate substring wide character in C

1 Answer

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

#define SIZE 64

int main(void)
{
    wchar_t str[SIZE] = L"computer programming by a programmer";
    wchar_t* wch = L"pr";

    wchar_t* p = wcswcs(str, wch); // windows 

    printf("The first occurrence of: %ls in: %ls is: %ls\n", wch, str, p);
}



/*
run:

The first occurrence of: pr in: computer programming by a programmer is: programming by a programmer

*/

 



answered Aug 7, 2024 by avibootz

Related questions

1 answer 127 views
1 answer 102 views
102 views asked Aug 7, 2024 by avibootz
1 answer 267 views
1 answer 102 views
102 views asked Aug 7, 2024 by avibootz
1 answer 93 views
93 views asked Aug 7, 2024 by avibootz
...