file da vedere mentre ero in classe

This commit is contained in:
2014-03-23 19:59:30 +01:00
parent 90715d7210
commit 7be945d55e
3 changed files with 25 additions and 5 deletions

View File

@@ -1,12 +1,18 @@
#include <stdio.h>
#include <ctype.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
int main (int index, char** in_data){
char buf[50];
fscanf(stdin,"%10[^\n]",buf);
fprintf(stdout,"%s",buf);
return 0;