#include <stdio.h>int main(){ char name[20]; printf("Type your name: "); gets(name); printf("Your name is: "); puts(name);}
Standard input is empty
Type your name: Your name is: ���tU
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!