Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Code Thread

Name: Anonymous 2018-02-23 0:05

This place has gone from programming themed garbage to just garbage. Post code. Any clean code. Here's a C function to remove whitespace.

void remove_whitespace(char *s) {
char *i = s;
do
if(!isspace(*i = *s))
++i;
while(*s++);
}

Name: Anonymous 2018-03-20 5:45

void fizzbuzz(int a, int b, int count){
int i;
for(i=0;i<=count;i++){
if( ! ((i%a==0?printf("fizz"):0)|(i%b==0?printf("buzz"):0)) ){
printf("%d",i);
}
printf("\n");
}
}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List