Reti costruito secondo esercizio sulle architetture big e little endian

This commit is contained in:
2014-03-17 16:39:48 +01:00
parent ad2d083824
commit 90715d7210
12 changed files with 130 additions and 0 deletions

BIN
test/test Executable file

Binary file not shown.

13
test/test.c Normal file
View File

@@ -0,0 +1,13 @@
#include <stdio.h>
#include <stdlib.h>
int main (int index, char** in_data){
char buf[50];
fscanf(stdin,"%10[^\n]",buf);
fprintf(stdout,"%s",buf);
return 0;
}