Showing posts with label C. Show all posts
Showing posts with label C. Show all posts

Thursday, April 22, 2010

Image Fading in linux

Please look here: fade.html. I'm going to move away from this horrible platform soon.

Sunday, December 6, 2009

Programming Challenge #2

If you can solve 1, you can solve 2

#include<stdio.h>
main(){
char ByModifyingThis[]="What happened?";
char printThis[]="You won!";

// your space

printf("%s",ByModifyingThis);
}

Programming Challenge #1

Ok, first to post a correct 1 line solution wins...

#include<stdio.h>
void gettohere()
{
printf("You win!");
}

int main(void)
{
// From Here
// Without calling gettohere();

return 0;
}

Followers