Skip to content

Instantly share code, notes, and snippets.

View supersuryaansh's full-sized avatar
💭
Life is good

supersu supersuryaansh

💭
Life is good
View GitHub Profile
@supersuryaansh
supersuryaansh / statusCode.c
Last active December 26, 2023 16:07
Return status code of a webpage in C using CURL
// requires #include <curl/curl.h>
int statusCode(char *addr){
CURL *curl;
CURLcode res;
long response_code;
// Initialize curl
curl_global_init(CURL_GLOBAL_DEFAULT);