Skip to content

Instantly share code, notes, and snippets.

setInterval(function() {
$('#box span').click();
}, 10);
@knowlet
knowlet / hello.c
Created June 20, 2014 10:55
Hello World
#include <stdio.h>
int main(int argc, char const *argv[])
{
puts("Hello World!");
return 0;
}
#include <stdio.h>
#include <string.h>
const char *wtfPerfectNum[] = {"6", "28", "496", "8128", "33550336", "8589869056", "13743869132"};
int isPerfect(char* num)
{
int i = 7;
while (i--) if (!strcmp(num, wtfPerfectNum[i])) return 1;
return 0;