View Single Post
Old 22-05-2007, 04:19 PM   #17 (permalink)
Sykora
I see right through you.
 
Sykora's Avatar
 
Join Date: Sep 2005
Location: Chennai
Posts: 597
Default Re: File handling using GCC/G++

Code:
>>> s = 'Help me! '
>>> i = 0
>>> while True :
...     try :
...             c = raw_input()
...     except KeyboardInterrupt :
...             break
...     print s[i % 9],
...     i += 1
I tested for Ctrl-C rather than Esc.
__________________
I didn't make the world, I only try to live in it.
http://lucentbeing.com
-- Sykora --
Sykora is offline