# File gglib/carray.rb, line 51
  def pp
    puts "CArray: "
    i=0
    while i<=@intsize
      if self[i] !=nil
        puts i.to_s+"\t"+self[i].to_s
      else
        puts i.to_s+"\tnil"   
      end
      i+=1
    end    
  end