From owner-freebsd-chat@FreeBSD.ORG Mon Oct 18 23:55:32 2004 Return-Path: Delivered-To: freebsd-chat@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7E9E16A4CE for ; Mon, 18 Oct 2004 23:55:32 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F98443D5E for ; Mon, 18 Oct 2004 23:55:32 +0000 (GMT) (envelope-from mymuss@gmail.com) Received: by mproxy.gmail.com with SMTP id 74so265688rnk for ; Mon, 18 Oct 2004 16:55:32 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=FS7fIMIfHTuvuHZngX5mLMJZxH+RDxJlEGjgn+vl9hbEHBOmQYJy6J6lCxL2ITcZA0GFN5GStWZC0sJvDGRLQ2c9VL9Pyg89I9JBpbPZGwuVDk/HoHa+bF+hsOkTuteqFeR2ORTVbz3mJ5ZVVQnRpT6i7xWn+n3esJR6R3qCfE8 Received: by 10.39.1.26 with SMTP id d26mr1684534rni; Mon, 18 Oct 2004 16:55:32 -0700 (PDT) Received: by 10.38.72.20 with HTTP; Mon, 18 Oct 2004 16:55:32 -0700 (PDT) Message-ID: Date: Tue, 19 Oct 2004 02:55:32 +0300 From: Andrew Novikov To: chat@freebsd.org In-Reply-To: <20041018184016.3dbed7b8@vixen42.24-119-122-191.cpe.cableone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20041018184016.3dbed7b8@vixen42.24-119-122-191.cpe.cableone.net> Subject: Re: learning c++ X-BeenThere: freebsd-chat@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew Novikov List-Id: Non technical items related to the community List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2004 23:55:33 -0000 Hello Vulpes, On Mon, 18 Oct 2004 18:40:16 -0500, Vulpes Velox wrote: > Any one know of any good guides to learning C++, specifically in > regards to the newer gcc? 1) Kernigan, Ritchie "C Programming Language" (Yes, I know it's quite old. Yes, I know C != C++ but this is a must-read-book) 2) Brian Stroustrup "The C++ Programming Language" (however I wouldn't recommned this book as an intro to C++) 3) Stan Lippman, Josie Lajoie "C++ Primer" 4) Bruce Eckel "Thinking in C++" (this one available online for free, search in google) > > Currently been messing with it a bit, but I am figuring that I am > doing something wrong... been messing with learning strings and the > like and I am getting a a.out that has a obscene size... 142kB in > size... It's normal for g++ :) -- Sincerely, Andrew