electricpants Posted May 30, 2016 Share Posted May 30, 2016 77(-) Link to comment Share on other sites More sharing options...
PB666 Posted May 30, 2016 Share Posted May 30, 2016 78(+) Link to comment Share on other sites More sharing options...
Moose Rocket Science Posted May 30, 2016 Share Posted May 30, 2016 79+ Link to comment Share on other sites More sharing options...
Astrofox Posted May 30, 2016 Share Posted May 30, 2016 80(+) Link to comment Share on other sites More sharing options...
Ozymandias_the_Goat Posted May 30, 2016 Share Posted May 30, 2016 81 (+) Link to comment Share on other sites More sharing options...
Astrofox Posted May 30, 2016 Share Posted May 30, 2016 82(+) Link to comment Share on other sites More sharing options...
PB666 Posted May 30, 2016 Share Posted May 30, 2016 28 minutes ago, Astrofox said: 82(+) 83 (+) Link to comment Share on other sites More sharing options...
TopHeavy11 Posted May 31, 2016 Share Posted May 31, 2016 Up to 100! 84 (+) Link to comment Share on other sites More sharing options...
PB666 Posted May 31, 2016 Share Posted May 31, 2016 85 (+) Link to comment Share on other sites More sharing options...
Atlas2342 Posted May 31, 2016 Share Posted May 31, 2016 84 (-) Link to comment Share on other sites More sharing options...
PB666 Posted May 31, 2016 Share Posted May 31, 2016 85 (+) Link to comment Share on other sites More sharing options...
Atlas2342 Posted May 31, 2016 Share Posted May 31, 2016 (edited) 84 (-) Edited May 31, 2016 by Atlas2342 I put 85 instead of 84 Link to comment Share on other sites More sharing options...
Spaceception Posted May 31, 2016 Share Posted May 31, 2016 86+ Link to comment Share on other sites More sharing options...
PB666 Posted May 31, 2016 Share Posted May 31, 2016 1 hour ago, Atlas2342 said: 84 (-) 85 (+) Link to comment Share on other sites More sharing options...
Astrofox Posted May 31, 2016 Share Posted May 31, 2016 86(+) Link to comment Share on other sites More sharing options...
TedwinKnockman66 Posted May 31, 2016 Share Posted May 31, 2016 87+ Link to comment Share on other sites More sharing options...
Astrofox Posted May 31, 2016 Share Posted May 31, 2016 88(+) Link to comment Share on other sites More sharing options...
Spaceception Posted May 31, 2016 Share Posted May 31, 2016 89+ Link to comment Share on other sites More sharing options...
icantmakemodels Posted May 31, 2016 Share Posted May 31, 2016 (edited) int add_1(n) { return n++; } int main(int argc, char *argv[]){ printf("%d",add_1(90)) } Compile and run 90 (If you haven't figured it out yet, i'm going to make the most complicated C program that just adds 1 to a number) Edited May 31, 2016 by icantmakemodels Link to comment Share on other sites More sharing options...
Spaceception Posted May 31, 2016 Share Posted May 31, 2016 91+ Link to comment Share on other sites More sharing options...
icantmakemodels Posted May 31, 2016 Share Posted May 31, 2016 (edited) #define @START_AT 91 int * n_plus_1_pointers(int * n){ *n += 1; return n; } int main(int argc, char * argv){ int n=@START_AT; printf("%d",n_plus_1_pointers(&n)); } Compile and run 92 Edited May 31, 2016 by icantmakemodels Link to comment Share on other sites More sharing options...
Spaceception Posted May 31, 2016 Share Posted May 31, 2016 93+ Link to comment Share on other sites More sharing options...
icantmakemodels Posted May 31, 2016 Share Posted May 31, 2016 (edited) #define @START_AT 93 int n_plus_1_pointers_overcomplicated(int n){ int * s = (int *)malloc(sizeof(int)); *s = n++; return s; } int main(int argc, char *argv[]){ int n = @START_AT; n = n_plus_1_pointers_overcomplicated(&n); printf("%d",n); free(&n); } Compile and run 94 Edited May 31, 2016 by icantmakemodels Fixed a bug that caused a memory leak when incrementing a variable. Link to comment Share on other sites More sharing options...
Spaceception Posted May 31, 2016 Share Posted May 31, 2016 95+ Link to comment Share on other sites More sharing options...
icantmakemodels Posted May 31, 2016 Share Posted May 31, 2016 bah, I can't be bothered right now. return 95++; Link to comment Share on other sites More sharing options...
Recommended Posts