Files
clearn/test_string.c

11 lines
128 B
C
Raw Normal View History

2017-02-07 20:03:49 +00:00
#include <stdio.h>
#include <stdlib.h>
int main ()
{
char text[70] = "Hallo";
printf("\n text:");
gets(text);
puts(text);
}