#include <stdio.h>
#include <stdbool.h>
#include <string.h>
bool StartsWith(const char *a, const char *b)
{
   if(strncmp(a, b, strlen(b)) == 0) return 1;
   return 0;
}


int main() {
    printf("Hello world!\n");
    if(StartsWith("/ngw/syspath-etc.clientlibs/emt/clientlibs/components/all/marketingsite.min.add284e2b278aa7db8424b941cfdb856.css", "/ngw")) { 
        printf("Matched");
    }else {
        printf("Not Matched");
    }

    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: