I've considered KartikVlsi's idea and I'm quite convinced that unless by an act
of God the if statement will NEVER execute. My proposal eliminates writing code that will never execute, god willing.
I propose:
/* begin file.c */
#include <stdio.h>
int main(void)
{
if(!printf("Hel lo "))
{
}
else
printf("World!" );...
User Profile
Collapse
-
Perhaps recursion might interest you..
Compliments of sleep+walker programming:1 Yahoo! Chat.
/* begin ifelse.c */
#include <stdio.h>
int main(void)
{
static int i;
if(!i++)
{
printf("Hello ");
main();
}
else
printf("World!" );
return 0;
}
/* end...Leave a comment:
No activity results to display
Show More
Leave a comment: