Keybase proof
I hereby claim:
- I am 6167656e74323431 on github.
- I am 6167656e74323431 (https://keybase.io/6167656e74323431) on keybase.
- I have a public key ASDqJgyq2s8ONkOvuNQNkzOxIIjrZQHPAHDxVmLhf0lpYgo
To claim this, I am signing this object:
################################################################################ | |
# The BrainFuck to C Compiler # | |
################################################################################ | |
# The BrainFuck to C Compiler (BFCC) is a ruby program that compiles Brainfuck | |
# code into C code. BFCC takes Brainfuck code via the STDIN stream, and outputs | |
# C code to the STDOUT stream. | |
# | |
# If any errors occur, a debugging message will be printed to the STDERR stream | |
# and the program will exit immediately with a failure exit code. No output | |
# will be printed to STDOUT upon failure. |
ICS3U In-Class Contest Template |
I hereby claim:
To claim this, I am signing this object:
#include <stdio.h> | |
#include <stdlib.h> | |
typedef struct ListNode // list node structure | |
{ | |
int value; | |
struct ListNode * next; | |
} node_t; | |
node_t * newList(unsigned int size, int node_values[]) // craete a new linked list |
#include <stdio.h> | |
#include <stdlib.h> | |
int loopCheck(FILE *file) | |
{ | |
int close_counter = 0; | |
int open_counter = 0; | |
char current_char; | |
while ((current_char = fgetc(file)) != EOF) |