I would tell said individual to stop what they’re trying to tell me because if it’s not stuff I should know about or want to hear about then I don’t wanna hear any of it
        
             
        
        
        
Answer:
Computers affect our lives daily because we use them everyday to browse the internet and solve problems in real life. They help solve problems and without them, getting certain information would be much harder. They help us interact with friends from anywhere in the world and communicate with relatives. It has also helped us during this pandemic and lets us learn from school in the safety of our own home.
( hope this helps, i wrote it myself ;-; )
 
        
                    
             
        
        
        
Direct Current Power regulates current/voltage flow, similar function as unregulated or regulated, but is smaller, cheaper, and more reliable.
<h3>What is Direct Current Power?</h3>
- In contrast to the flow of a river, direct current is a technique in which electricity constantly flows in the same direction. It speaks about the flow of electricity produced by batteries, solar cells, and other sources. 
 - Alternating current (AC), on the other hand, is a technique in which the positive and negative sides are consistently swapped at regular intervals, changing the direction of the electricity flow in accordance. 
 - This is the electricity that comes from a generator or a plug-in. 
 - Alternating current is used to transmit both the electricity generated at power plants and the electricity delivered to houses.
 
To learn more about Direct Current Power, refer:
brainly.com/question/1402412
#SPJ4
 
        
             
        
        
        
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;
    }
}