18 lines
195 B
C
18 lines
195 B
C
|
|
# include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char *argv[], char *envp[])
|
|
{
|
|
int i;
|
|
char *str;
|
|
|
|
str = NULL;
|
|
i = 0;
|
|
while (str[i])
|
|
{
|
|
write(1, &str[i], 1);
|
|
}
|
|
return (0);
|
|
}
|