Topic: BEGINNING C++ programming question
Author: michaelc@lna.logica.com
Date: Wed, 14 Sep 1994 21:10:47 GMT Raw View
> Subject: BEGINNING C++ programming question
> Newsgroups: comp.std.c++
I vote we change the name of this newsgrope.
M.
Author: robtcram@crl.com (Robert H. Cram)
Date: 14 Sep 1994 23:18:09 -0700 Raw View
In general, you won't get flamed for ignorance, only for failing even to
glance at the most basic Apple or Symantec documentation or publications.
RTFM.
Author: bd@mash.gun.de (Bruno Dickhoff)
Date: 16 Sep 1994 14:18:00 +0200 Raw View
> got the error that the link failed. I realize that PCs and Macs have
> totally different operating systems but was wondering how much more code
> _____________
> #include <iostream.h>
> int main();
^ this semicolon is one too much...
> {
> cout << "Hello\n";
> return 0;
> }
__________________________________________________________________________
Bruno Dickhoff <|> Internet: bd@mash.gun.de
M*A*S*H <|> VoiceNet: 0:211/6299.34
Institute for Information Research (IFIR) <|> Fido(cl): 2:2440/225.24
Duesseldorf, Germany <|> Compuserve: 100140,2231
--------------------------------------------------------------------------
## CrossPoint v3.02 ##
Author: ksayre@uofport.edu (Kent Sayre)
Date: 9 Sep 1994 21:47:28 -0700 Raw View
I wrote this Program on a PC using Borland C++ and it compiled and
executed correctly. I tried writing the same code with Symantec
C++ for the Macintosh and then compiling and running the program but I
got the error that the link failed. I realize that PCs and Macs have
totally different operating systems but was wondering how much more code
would be necessary to compile the same program for the Mac? Thanks. No
phlames for my ignorance, please.
_____________
#include <iostream.h>
int main();
{
cout << "Hello\n";
return 0;
}
_____________