|
From: <Mat...@Ve...> - 2005-04-13 18:03:43
|
Verne is new at C++ too by his own admission; therefore I think he's
qualified to say this: he has just been reading books and teaching himself.
Verne's point is that reading a book really would help, so, from his point
of view, suggesting (however loudly) that Austin read a book is actually
giving help, not being unhelpful.
Sometimes the "tough love" approach to programming help is appropriate.
Apparently, Verne believes this is a case where "tough love" help is the
right kind.
As for whether it was needed, we are all adults here and I don't think it's
our responsibility to judge Verne. It's up to Verne to use his own best
judgment, and I don't think he would be the type of person who would use bad
judgment before he wrote something.
Correct me if I'm wrong on some of my points. I'm just trying to point out
what Verne might have been thinking when he dispensed the advice.
-----Original Message-----
From: dev...@li...
[mailto:dev...@li...]On Behalf Of jose
isaias cabrera
Sent: Wednesday, April 13, 2005 10:50 AM
To: Verne H. Bohlender
Cc: Dev C++; Austin Scholze
Subject: Re: [Dev-C++] (no subject)
Was that really needed?
Don't help, if you don't want to help.
On 4/13/05, Verne H. Bohlender <ve...@sy...> wrote:
> The answer to this is simple. READ A BOOK ON SIMPLE C++ AND LEARN THE
> FUNDAMENTALS FROM THE BOOK. There are an awful lot available if you do a
> simple search or go to a book store.
> Verne
>
>
> Hi. I'm new to programming, and don't know all the terminology, so please
go
> easy on me.
>
> I'm trying to figure out how to create a include file so I can use it's
> functions in my programs, by just including it.
>
> Here's my simple test program that didn't work in the least ^^
>
> __________________________________________________
>
> the program I tried to link to:
>
> #include<iostream>
>
> using namespace std;
>
>
> int subten(int num)
> {
> num -= 10;
> return num;
> }
> The program I tried to link to the above with:
>
> #include <iostream>
> #include "subten"
> using namespace std;
>
> main()
> {
>
> int a = 20;
> cout << a << endl;
> a=subten(a);
> cout << a;
>
> system("pause");
> }
> Ok, now please don't chew me out to bad for the mistakes that I made, and
> are common knowledge to everyone but me :p. thanks.
>
--
The Bible is not politically correct!
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_ide95&alloc_id396&op=click
_______________________________________________
Dev-cpp-users mailing list
Dev...@li...
TO UNSUBSCRIBE: http://www23.brinkster.com/noicys/devcpp/ub.htm
https://lists.sourceforge.net/lists/listinfo/dev-cpp-users
___________________________________________________________________
The information contained in this message and any attachment may be
proprietary, confidential, and privileged or subject to the work
product doctrine and thus protected from disclosure. If the reader
of this message is not the intended recipient, or an employee or
agent responsible for delivering this message to the intended
recipient, you are hereby notified that any dissemination,
distribution or copying of this communication is strictly prohibited.
If you have received this communication in error, please notify me
immediately by replying to this message and deleting it and all
copies and backups thereof. Thank you.
|