1.0100   Given:

 

                    char mystring[5];

 

 

      AND we learn that the base address of mystring is 8356. If we were to look in RAM, we would find:

 

 

 

 

 

 

 


      If we were to issue the command:

 

                    puts(mystring);

 

      what would the output be??

 

***********************************************

Since the base address is 8356.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 


NOTICE: Even though we reserved only 5-bytes, the puts command will print until a NULL character is encountered.

 

Or, more simply:

 

            Pure Garbage