wpe41.gif (23084 bytes)CIS3355: Business Data Structures
Fall, 2008
 

CIS3355: Data Structure
Fall, 2002

How does puts work  ????????

  • puts is a standard function found in <stdio.h>

  • The function receives a base address and continues printing the elements of the array until it encounters a NULL ('\0') character.

  • If we were to pass the base address of our string (character) as: puts(character);

The C function necessary might appear as:

How does this works  ??????