Forum: Java Nov 12th, 2006 |
| Replies: 1 Views: 2,701 I'm been working through my textbook and just can't seem to understand the section on covariant return types. ie) what are covariant return types, what they are used for, etc. The definition in the... |
Forum: C++ Sep 4th, 2006 |
| Replies: 54 Views: 83,225 Bruce Eckel's "Thinking in C" is an audio-visual primer (similar to a university lecture) that explores the major features of C, designed to prepare the audience for further studies in Java and/or... |
Forum: C++ Sep 3rd, 2006 |
| Replies: 9 Views: 3,891 Thank you for all the recommendations. I've started on Bruce Eckel's "Thinking in C" and skimmed through "Thinking in C++"
Both are available on www.mindview.net and can be downloaded free of... |
Forum: Network Security Sep 3rd, 2006 |
| Replies: 8 Views: 3,213 This is an interesting article. I can't attest to the validity of the claims, but it's called "New secure browser Browzar is fake and full of adware" ... |
Forum: C++ Sep 2nd, 2006 |
| Replies: 9 Views: 3,891 Damn.
Do you have any recommendations or should I pick a text from one of the stickies?
I'm actually not sure whether I should start with C, jump into C++ or bother learning the language at... |
Forum: C++ Sep 2nd, 2006 |
| Replies: 9 Views: 6,045 Ah you're right. Silly me, that was after the edit as well :P |
Forum: C++ Sep 2nd, 2006 |
| Replies: 9 Views: 3,891 Yes that is the book I am using. I am going for the very thorough approach (ruling out all the "how to learn to program in 10 days") The first couple hundred pages were manageable but I find the... |
Forum: C++ Sep 2nd, 2006 |
| Replies: 9 Views: 3,891 I'm self-teaching myself C with a complete reference book. Unfortunately that means that the author assumes that the reader is familiar with fundamental concepts and doesn't bother commenting the... |
Forum: C++ Sep 1st, 2006 |
| Replies: 9 Views: 6,045 You could use a for loop to receive input 10 times.
It would go something like
for (int i=0;i<=10;i++)
sumoftemp += inputtemp; //the running total
Assuming you receive 10 values for input,... |
Forum: C Aug 30th, 2006 |
| Replies: 5 Views: 1,330 Is this bad practice or simply illegal? How/why should it affect anything?
I don't mean to challenge you or anything. I'm learning and my text doesn't seem to address the issue. |
Forum: C Aug 30th, 2006 |
| Replies: 12 Views: 2,084 Stupid question. I've noticed that most of the posts seem to sink to the very bottom of the page. Is it possible to reply to a specific post without this happening? |
Forum: C Aug 30th, 2006 |
| Replies: 12 Views: 2,084 Since you already learned this from GID, you could check out the scanf() (http://www.gidnetwork.com/b-59.html) series there. [/quote]
Will do. I couldn't help but notice that the author of the... |
Forum: C Aug 30th, 2006 |
| Replies: 12 Views: 2,084 Thank you for all the help! |
Forum: C Aug 30th, 2006 |
| Replies: 12 Views: 2,084 Did it manage to work with getchar() or system("PAUSE")? |
Forum: C Aug 30th, 2006 |
| Replies: 12 Views: 2,084 Ok that's weird. Using system("PAUSE") gives me the correct output but why is this? It seems to me that they should be equivalent in this situation but apparently I have a misunderstanding.
I've... |
Forum: C Aug 30th, 2006 |
| Replies: 12 Views: 2,084 I'm trying to use scansets to filter out out some textfiles.[/COLOR]
#include <stdio.h>
int main( void)
{
int i;
char str[ 80], str2[ 80];
scanf("%d %[abcdefg] %s", &i, str, str2);
... |