#include #include #include int main() { const char *text = "Podaj swoje imiÄ™: "; write(STDOUT_FILENO, text, strlen(text)); int buffsize = 256; char *buffer = malloc(buffsize); int nameLength; nameLength = read(STDIN_FILENO, buffer, buffsize); text = "Witaj "; write(STDOUT_FILENO, text, strlen(text)); write(STDOUT_FILENO, buffer, nameLength); free(buffer); return 0; }