Search the web
Sign In
New User? Sign Up
cprogramming2 · C Programming Turning caffeine into code
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 3213 - 3242 of 8330   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3213
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. ...
ltsleepmachine
Offline Send Email
Aug 1, 2002
8:25 pm
3214
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...
n a
pearl2179
Offline Send Email
Aug 2, 2002
3:38 am
3215
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 Petrovic
michelpetrovic
Offline Send Email
Aug 2, 2002
7:46 am
3216
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...
Chuck Ouellette
wncgnet
Offline Send Email
Aug 2, 2002
8:51 am
3217
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, ...
Caulagi Pradeep
caulagi_lara60
Offline Send Email
Aug 2, 2002
9:01 am
3218
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...
Michel Petrovic
michelpetrovic
Offline Send Email
Aug 2, 2002
9:09 am
3219
Caulagi, I just wanted to thank you for that EXHAUSTIVE(!) explanation. Thank you, I appreciate it! Michel.P...
Michel Petrovic
michelpetrovic
Offline Send Email
Aug 2, 2002
9:45 am
3220
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: ...
schabot1
Offline Send Email
Aug 2, 2002
1:31 pm
3221
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...
gimpyclaus
Offline Send Email
Aug 3, 2002
4:06 am
3222
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 ...
Sidharth Roychoudhury
src_in01
Offline Send Email
Aug 3, 2002
10:24 am
3223
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:...
Caulagi Pradeep
caulagi_lara60
Offline Send Email
Aug 5, 2002
4:14 am
3224
Ok, thanx, just one questions - What do u mean when u say DUD AT PRG? ... then, u drop the &. ... that u ... scanf ... few ... Red ... Service....
gimpyclaus
Offline Send Email
Aug 6, 2002
1:32 am
3225
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...
Caulagi Pradeep
caulagi_lara60
Offline Send Email
Aug 6, 2002
3:52 am
3226
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 ...
gimpyclaus
Offline Send Email
Aug 6, 2002
11:27 pm
3227
i think you shd write *(i[0]) = 1.. just try and see regards ... ________________________________________________________________________ Want to sell your...
n a
pearl2179
Offline Send Email
Aug 7, 2002
7:39 am
3228
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...
fadulous
Offline Send Email
Aug 7, 2002
11:11 pm
3229
int main() { int i1,j1,i,j,x,y,a,b,c,d,e,temp; int v2[8]={1,2,3,4,5,6,7,8}; a=v2[5]; b=v2[6]; temp=a; a=b; v2[6]=a; b=temp; v2[5]=b; c=v2[3]; d=v2[4]; e=v2[7];...
tuhh2001
Offline Send Email
Aug 8, 2002
10:00 am
3230
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,...
Paul Herring
Shabble
Offline Send Email
Aug 8, 2002
1:10 pm
3231
#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 ...
Çetin Baloglu
cetinbaloglu
Offline Send Email
Aug 8, 2002
11:59 pm
3232
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...
aruntom_in
Offline
Aug 10, 2002
7:24 am
3233
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...
Akber javid
hamna_the_bird
Offline Send Email
Aug 11, 2002
4:42 pm
3234
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...
Akber javid
hamna_the_bird
Offline Send Email
Aug 13, 2002
3:23 pm
3235
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...
madwhit
Offline
Aug 13, 2002
5:11 pm
3236
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...
madwhit
Offline
Aug 13, 2002
5:20 pm
3237
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 =...
Jim
lernim
Offline Send Email
Aug 13, 2002
6:02 pm
3238
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...
intelwalk
Offline
Aug 14, 2002
2:44 am
3239
From: intelwalk [mailto:buzkilr@...] ... Simply? They're two different languages with common keywords (C++ has a few more,) most of which mean the same...
Paul Herring
Shabble
Offline Send Email
Aug 14, 2002
3:05 am
3240
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...
aruntom_in
Offline
Aug 14, 2002
8:32 am
3241
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...
bhaskar choubey
bhaskarchoubey
Offline Send Email
Aug 14, 2002
8:50 am
3242
I got it. A co-worker sent me a link to Microsoft Knowledge Base Article - Q179582. I have included the article below. Thanks, madwhit ...
madwhit
Offline
Aug 14, 2002
1:40 pm
Messages 3213 - 3242 of 8330   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help