Y=In(x)-5
hopefully it’s right :)
Answer: The code below can display directory as stated in the question
Explanation:
char *
gnu_getcwd ()
{
size_t size = 100;
while (1)
{
char *buffer = (char *) xmalloc (size);
if (getcwd (buffer, size) == buffer)
return buffer;
free (buffer);
if (errno != ERANGE)
return 0;
size *= 2;
}
}
Answer:
File Management Tool
Compression Tool
Explanation: type it into the internet and the answer is there. :)
A buggati or however u spell it