For example, to validate the valid Url, I\'d like to do the following
char usUrl[MAX] = \"http://www.stackoverflow\" if(usUrl[0] == \'h\' && usUr
The following should check if usUrl starts with "http://":
strstr(usUrl, "http://") == usUrl ;