#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
*/