Last active
June 29, 2018 01:12
-
-
Save chrisfauerbach/a454147fe566fa027d5b94a880584e1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(){ | |
unsigned long reference_number = 60000; | |
unsigned long phone_numbers[65535]; | |
printf( "%lu\n", sizeof(phone_numbers)); | |
phone_numbers[reference_number] = 1; | |
if ( phone_numbers[reference_number]==1){ | |
printf("Match on = %lu\n", reference_number); | |
} | |
return 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment