11 lines
128 B
C
11 lines
128 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
|
||
|
|
int main ()
|
||
|
|
{
|
||
|
|
char text[70] = "Hallo";
|
||
|
|
printf("\n text:");
|
||
|
|
gets(text);
|
||
|
|
puts(text);
|
||
|
|
}
|