Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!batcomputer!cornell!rochester!pt.cs.cmu.edu!o.gp.cs.cmu.edu!andrew.cmu.edu!jp48+ From: jp48+@andrew.cmu.edu (Jonathan Pace) Newsgroups: comp.sys.mac.programmer Subject: Can I equate arrays? Message-ID: Date: 23 Mar 91 07:07:14 GMT Organization: Graduate School of Industrial Administration, Carnegie Mellon, Pittsburgh, PA Lines: 14 I have an instance of arrays that I want to store in a temporary instance while I play around with the working data set. Can I do either of the following in standard C (I have to eventually run on a SUN workstation): 1: Equate the instances i.e. - temp_instance = working_instance 2: Equate the individual arrays i.e. - temp_inst.array1 = work_inst.array1 or am I going ot have to equate each value? Thanks for the help, Jon Pace beginning C programmer