C
C
Example: Http.GetDomain method
Demonstrates theGetDomain method.
Chilkat C Downloads
#include <C_CkHttp.h>
void ChilkatSample(void)
{
HCkHttp http;
const char *domain;
http = CkHttp_Create();
domain = CkHttp_getDomain(http,"https://chilkatsoft.com/refdoc/csharp.asp");
printf("%s\n",domain);
// Output: chilkatsoft.com
CkHttp_Dispose(http);
}