NachOS/code/test/getstring.c

13 lines
220 B
C

#include "syscall.h"
int main()
{
//char s;
//s = GetChar();
//PutChar(s);
char t[100];
GetString(t, 100);
PutString(t);
PutChar('\n');
PutString("Ceci est un test de grande ampleur");
}