Is there a function in C that does the same as raw_input in Python?
Posted
by Rami Jarrar
on Stack Overflow
See other posts from Stack Overflow
or by Rami Jarrar
Published on 2010-03-23T01:03:14Z
Indexed on
2010/03/23
2:51 UTC
Read the original article
Hit count: 369
Is there a C function that does the same as raw_input
in Python?
#in Python::
x = raw_input("Message Here:")
How can I write something like that in C?
© Stack Overflow or respective owner