Skip to content

Instantly share code, notes, and snippets.

View MichaelNecio's full-sized avatar

Michael Necio MichaelNecio

  • Windsor, ON, Canada
View GitHub Profile
@MichaelNecio
MichaelNecio / memcpyIP.c
Last active September 19, 2016 03:54
Problem of the Week 1, What's up with compilers?
#include <string.h>
#include <stdio.h>
#include <stdint.h>
int main() {
uint32_t ip;
scanf("%u", &ip);
uint8_t octets[4];