home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / lang / c / 16035 < prev    next >
Encoding:
Text File  |  1992-11-06  |  836 b   |  32 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!newsstand.cit.cornell.edu!piccolo.cit.cornell.edu!crux3!sl14
  3. From: sl14@crux3.cit.cornell.edu (Stephen Lee)
  4. Subject: Returned struct
  5. Message-ID: <1992Nov5.075611.14809@piccolo.cit.cornell.edu>
  6. Sender: news@piccolo.cit.cornell.edu (USENET News System)
  7. Nntp-Posting-Host: crux3.cit.cornell.edu
  8. Organization: Fantasy Zone Ithaca, Inc.
  9. Date: Thu, 5 Nov 92 07:56:11 GMT
  10. Lines: 20
  11.  
  12. How can one make use of a struct returned by a function?  e.g.
  13.  
  14. struct complex complex_add(struct complex a, struct complex b);
  15.  
  16. I tried
  17.  
  18. struct complex z1, z2, z3;
  19.  
  20. z1.x = 0; z1.y = 3;
  21. z2.x = 5; z2.y = 4;
  22.  
  23. z3 = complex_add(z1, z2);
  24.  
  25. But BC++ 2.0 complained 'illegal structure operation' on the above.
  26. Note:  I'm using C, not C++.
  27.  
  28. Please help me..  AdTHANKSvance,
  29. --
  30. Stephen Lee
  31. Internet: sl14@crux2.cit.cornell.edu
  32.