public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
From: Claudio Bley <bley@mail.cs.uni-magdeburg.de>
To: gcc-help@gcc.gnu.org
Subject: Re: Using gcc
Date: Fri, 14 Sep 2001 09:14:00 -0000	[thread overview]
Message-ID: <15266.11653.130075.52537@wh2-19.st.uni-magdeburg.de> (raw)
In-Reply-To: <3BA22579.7070104@nsu.edu>

>>>>> " " == charles scott <cpscott@nsu.edu> writes:

     > Hello, I am new to GNU CC and I have version gcc 3.0.1 running on
     > Solaris 8.  The package seemed to install okay and I added the
     > /usr/local/bin directory to my path however, when I compile my c++
     > program it returns the following message:

     >                     `main' must return `int'

     > Here is the code.

     > #include <iostream.h>

     > void main() 
     > { 
     >      long number = 0; 
     >      cout << "This is a test. "  << number << endl;
     > }

     > Is there a place where I get some sample c++ code that will compile
     > to test my install?

     > Thanks for your assistance.

Just do what the compiler suggests/dictates!

#include <iostream>           /* include C++ header files without .h */

int main ()                   /* `main' must return `int' !! */
{
    using namespace std;      /* cout is declared in namespace std */

    long number = 0;
    cout << "This is a test. "  << number << endl;

    return 0;
}


Claudio

  reply	other threads:[~2001-09-14  9:14 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-09-14  8:39 charles scott
2001-09-14  9:14 ` Claudio Bley [this message]
2001-09-14  9:28 ` 홍근식
2002-03-28 20:30 Francisco Mendez
2002-03-28 20:40 Thai Dang Vu
2002-03-28 20:40 Mariappan, MaharajanX
2005-12-24 19:40 jjwdeck
2005-12-24 20:00 ` Brian Dessent

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=15266.11653.130075.52537@wh2-19.st.uni-magdeburg.de \
    --to=bley@mail.cs.uni-magdeburg.de \
    --cc=gcc-help@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).