Code:
void main()
{
if(X)
{
printf("Hello");
}
else
{
printf(" World");
}
}
Thanks
Shabbir Bhimani
|
Go4Expert Founder
|
![]() |
| 6Jul2005,12:31 | #1 |
|
Code:
void main()
{
if(X)
{
printf("Hello");
}
else
{
printf(" World");
}
}
Thanks Shabbir Bhimani |
|
Team Leader
|
|
| 6Jul2005,13:42 | #2 |
|
How much twist can be impared with just Hello World
|
|
Team Leader
|
![]() |
| 6Jul2005,13:43 | #3 |
|
What I can think of is
X = !printf("Hello") so the program becomes Code:
void main()
{
if(!printf("Hello"))
{
printf("Hello");
}
else
{
printf(" World");
}
}
|
|
Team Leader
|
![]() |
| 6Jul2005,13:51 | #4 |
|
Quote:
Originally Posted by go4expert
|