Introduce examples dir
[lcapit-junk-code.git] / examples / C / scanf.c
blobb3a3a149c5be1465e4d36afd3bc371eae502649b
1 #include <stdio.h>
3 int main(void)
5 char line[32];
7 /* Without this trick, scanf() will stop reading
8 * at the first space character */
9 scanf("%[^\n]s", line);
10 printf("-> %s\n", line);
11 return 0;