Skip to content

Instantly share code, notes, and snippets.

View mayank's full-sized avatar
🎹
Playing Code!

Mayank mayank

🎹
Playing Code!
View GitHub Profile
@mayank
mayank / http.c
Created November 13, 2013 02:49
Fetching Web Page using C
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netdb.h>
#include <inet/in.h>
int main(int argc, char* argv[])
@mayank
mayank / smtp.c
Created November 12, 2013 23:53
SMTP File Transfer using C
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <netdb.h> /* gethostbyname */
#include <netinet/in.h> /* htons */
#include <sys/socket.h>
#include <sys/types.h>