Writing a virtual Santa Claus in C ?

B

Bruno Beam

Can I write a virtual Santa Claus in C who will come to me on
Christmas ?

Or is C an satanic programming language that will turn Santa into
Satan Claus who will just infect my computer with spambots and rape me
with the mouse?

Please help!
 
A

Artie Gold

Bruno said:
Can I write a virtual Santa Claus in C who will come to me on
Christmas ?

Or is C an satanic programming language that will turn Santa into
Satan Claus who will just infect my computer with spambots and rape me
with the mouse?

Please help!

<deadpan>
As this would require non-standard platform-specific extensions, you're
off topic here. However, as C is a general purpose programming language,
given appropriate extensions either effect could be achieved.
</deadpan>

HTH,
--ag
 
M

Malcolm

Bruno Beam said:
Can I write a virtual Santa Claus in C who will come to me on
Christmas ?
/*
virtual santa
*/

int main(void)
{
char request[1024];
printf("What do you want for Christmas?\n");
fgets(request, 1024, stdin);
if(!strchr(request, '\n'))
printf("Cinders for a greedy child\n");
else
printf("Ho ho ho ho ho, here' s a %s\n", request);
}
Or is C an satanic programming language that will turn Santa into
Satan Claus who will just infect my computer with spambots and rape me
with the mouse?
/*
evil santa
*/

void main(void)
{
char request[1024];

printf("What do you want for Christmas?\n");
gets(request):
printf("Ho ho ho ho, here',s a%s\n", request);
}
 
A

Adam

A language like Santa clause..... hmmm.
How about hookey-dookey looo(IE it doesn't exist)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,780
Messages
2,569,607
Members
45,240
Latest member
pashute

Latest Threads

Top