Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!apple!snorkelwacker!bloom-beacon!adam!scs From: scs@adam.mit.edu (Steve Summit) Newsgroups: comp.lang.c Subject: Changes to Answers to Frequently Asked Questions (FAQ) on comp.lang.c Message-ID: <1990Sep1.040026.5411@athena.mit.edu> Date: 1 Sep 90 04:00:26 GMT Sender: daemon@athena.mit.edu (Mr Background) Reply-To: scs@adam.mit.edu (Steve Summit) Organization: Thermal Technologies, Inc. Lines: 19 This article contains the changes between the previous posting of the frequently-asked questions list (August 1) and the new one (coming up next). The changes this month were obviously minimal, correcting only one glaring error. (I have been on vacation for two weeks and, in fact, still am; these articles are being graciously posted for me by the at program.) If you have sent me corrections or suggestions which are not reflected here, don't worry; they will most likely be rolled in to the October posting. 509c509 < int **array = (int **)malloc(nrows * ncolumns * sizeof(int *)); --- > int **array = (int **)malloc(nrows * sizeof(int *)); 520c520 < int **array = (int **)malloc(nrows * ncolumns * sizeof(int *)); --- > int **array = (int **)malloc(nrows * sizeof(int *));