Can anyone recommend a good book on C++ that addresses templates. I'm going absolutely bonkers trying to figure out how to handle things like specialization. ...
as for a first hand help you can efer to the Programming in c++ by E. balagurusamy... it has pretty decent explanation of the concept though it does not go...
Hello everyone, I'm quite new to C (coming from Java), and I've come across a small hurdle. I wan't to fill an array of integers by calling a function that...
Michel, Remove the ampere sign from the function call test(line 5) it should be: test(i); int main() { int i[4], j; test(&i); Chuck Ouellette Willette's...
the problem is with this statement - test(&i); replace it with - test(i); OR test( &i[0] ); the reason is, because u have declared i to be an int array, ...
Hello Chuck Thank you for your prompt reply! Your advice works perfectly, but could you please explain what it does, and the difference to what I did in my...
Hello, I am new to the group and have, what I thought would be, a simple problem. I am trying to read and recode a file. The code I am using is as follows: ...
So how do i edit my code so it will work properly? Do i just pt the & sign in front of my variables? or is there somehtin else i need to do? z ... didn't...
I am attaching a copy of the code file .. I will oblized if u can give some advice ... Let me expain you the problem ... I am making a C++ prog in windows ...
yeah... that more or less it unless u want to read into an array. then, u drop the &. DUD AT PRG. ... From: gimpyclaus To: cprogramming2@yahoogroups.com Sent:...
dud_at_prg = i_am_bad_at_programming; what's gimpyclaus for? DUD AT PRG. ... From: gimpyclaus To: cprogramming2@yahoogroups.com Sent: Tuesday, August 06, 2002...
Ohh! I thought u meant my program was still a dud. =) My nickname wasan old inside joke w/ my friends from 5 years ago ... PRG? ... array. ... it ... the ...
i think you shd write *(i[0]) = 1.. just try and see regards ... ________________________________________________________________________ Want to sell your...
hi, I am looking for the function which creates a directory. I looked at the man page for open() but it seems that it is for opening/creating a file. I am...
From: tuhh2001 [mailto:tuhh2001@...] ... [snip] As was pointed out to you in C-prog - there is nothing wrong with this program. It works as intended,...
#include <stdio.h> #include <conio.h> add those to your code... ... From: tuhh2001 To: cprogramming2@yahoogroups.com Sent: Thursday, August 08, 2002 1:00 PM ...
Could anybody tell me how to generate pulses in the microsencod range using a C program. I want to drive a motor through the parallel port of the computer...
Hi I need some ones help. Within a class when a member function member have a loop it gives a warning . But when we write the same member outside the class and...
hi What is the difference between a CLASS and STRUCTURE. I think they are same They both can have functions They both can do the inharitence etc ... Do You...
KDevelop seems to have a feel similar to MSDev. I am running SuSE 8.0 and KDevelop 2.1 came with it. If you are running the KDE desktop environment you should...
I have a windows app that is dialog based. My main window is created with a call to DialogBox(). The project does have an icon resource included and the icon...
Could someone show me something simple in a prevent repeat random number? I have this. 25 numbers I need to generate randomly. This is my last hurdle! j =...
I am a CS student that is taking the second part of C++ class at school this fall and i am coming from just C background and was just wondering what are the...
From: intelwalk [mailto:buzkilr@...] ... Simply? They're two different languages with common keywords (C++ has a few more,) most of which mean the same...
Could someone tell me how to generate pulses in the microsecond range using a C language program. I need to drive a motor through the computer parallel port...
Hi all, Regarding the difference between C and C++, one should refer to the classic book "The C++ programming language" by Bjarne stroustoup (the spelling may...