Skip to content

Instantly share code, notes, and snippets.

View frednora's full-sized avatar
💧
Glitch and Leak

Fred Nora frednora

💧
Glitch and Leak
View GitHub Profile
@frednora
frednora / check
Created August 18, 2018 21:54
check
#include <stdio.h>
int check( int num ){
return (int) ( num == 0 ? num : ( num > 0 ? 1 : -1 ) );
//return (num > 0) - (num < 0);
};
int main (){
@frednora
frednora / test
Last active July 29, 2018 20:46
Test
int main (){
//This is a test.
return (int) 0;
};