Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

c-prog · C/C++ Programmer's Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 13582
  • Category: C and C++
  • Founded: Sep 7, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 12 - 42 of 75375   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
12 michael.ruiz@... Send Email Feb 18, 1999
8:20 pm
I am having trouble with my program. If any of you have a little time to look at that would be great. Otherwise... I'll be working on it for the duration of...
13 Eric R Menendez
emenendez22@... Send Email
Feb 28, 1999
5:47 am
How can you make a program that has colored ASCII characters? ___________________________________________________________________ You don't need to buy...
14 kala@... Send Email Mar 4, 1999
7:27 am
Hello all, I am unable to use the functions except ceil() & floor() in math.h header file, in UNIX C.I have included math.h in my program .But it says...
15 Eric R Menendez
emenendez22@... Send Email
Mar 16, 1999
5:25 pm
Is there an easy way to make program groups from a DOS program in Win3.x? in Win95/98/NT? Thanks! Eric ...
17 martin.simard@... Send Email Mar 20, 1999
5:26 pm
i'm not an expert as you can see with c/cpp language... neither than english writing, but i need to know how to open and read data from a flat file (ascii),...
18 John Gaughan
jtg9947@... Send Email
Mar 20, 1999
5:52 pm
... This works for me: string s; ifstream in; in.open("foo.txt", ios::in); while (!in.eof()) { in >> s; // do whatever you need to do with this line } John...
19 Eric R Menendez
emenendez22@... Send Email
Apr 3, 1999
9:32 pm
I am working on a program to randomly generate an insult, Shakespearian style. It needs to read in 3 sets of 30 words, and pick one word from each set. It...
20 Tom Barron
tbarron@... Send Email
Apr 4, 1999
12:13 am
... Hi, Eric. I've run into this before. My recollection is that there're two possibilities. One is that your program has a memory leak somewhere (i.e.,...
21 Samit Ray
Samit_Ray@... Send Email
Jul 6, 1999
7:23 am
Hi!! I have joined a course for c programming. which I attend after work in the evenings, this helps the grey cells to stay up and running. the first doubt i...
22 Dama Prem Kumar
dpkumar@... Send Email
Jul 6, 1999
12:16 pm
Hi Samit, Since you said you are going for learning course, I assume that you are new to "C" programming. So I am giving basic details also here, ignore...
23 Samit Ray
Samit_Ray@... Send Email
Jul 7, 1999
5:53 am
can we increment or decrement an expression eg. a=1; b=2; j=(a+b)++; is this legal ? i havent tried it out on the compiler ... eGroups.com home:...
24 Dama Prem Kumar
dpkumar@... Send Email
Jul 7, 1999
6:11 am
... No. This is not legal. Because, ++ operator works on an independent variable(with out expressions) as it has to modify the value of the variable after ++...
25 Dave Owen
DAVEO@... Send Email
Jul 7, 1999
8:04 am
No, you can only inc/dec ONE operator but j=((a++)+(b++)) as far as I know is ... From: Samit Ray [mailto:Samit_Ray@...] Sent: 07 July 1999 06:53 To:...
26 Fast Eddie
execint@... Send Email
Jul 8, 1999
12:00 am
Hi Guys: Instead of: a=1; b=2; j=(a+b)++; Give this a try: J=(a+b); J++; Edward D. (Fast Eddie) Clark A good resume is like a life insurance policy, You can't...
27 Dave Owen
DAVEO@... Send Email
Jul 8, 1999
7:53 am
Ah yes, but what if a and b needed to be incremented?? ... From: Fast Eddie [mailto:execint@...] Sent: 08 July 1999 00:19 To: c-prog@egroups.com Subject:...
28 Dama Prem Kumar
dpkumar@... Send Email
Jul 8, 1999
8:45 am
... Use, if you want j to be a + b and a and b to be incremented *LATER* j = a++ + b++; if you want j to be a + b + 1 and a and b to be incremented *LATER* j =...
29 Fast Eddie
execint@... Send Email
Jul 9, 1999
12:53 am
Ok Good Point: Instead of: a=1; b=2; j=(a+b)++; Give this a try: a++; b++; J=(a+b) Provided there are no conditions for incrementing a and b. Edward D. (Fast...
30 Cuyler Jones
cuyler@... Send Email
Jul 9, 1999
7:43 am
<snip> ... I'll be frank. It's called a DISCUSSION. Sometimes things outside of the scope of the original discussion are addressed, pondered and even (big...
31 Misrahim Morales
mmoral@... Send Email
Jul 9, 1999
11:10 pm
Hello to everyone, I am writing a small program in C++ that requires that a while loop be implemented every second. I wanted to know if there was anyway that...
32 Tom Barron
tbarron@... Send Email
Jul 10, 1999
11:14 pm
Hi, Misrahim. Here's one way: while (condition) { /* do stuff */ sleep(1); } This assumes that your system's sleep() routine operates in units of one second...
33 enliteneer@... Send Email Jul 11, 1999
8:07 pm
Try using an interrupt handler that gets interrupted every millisec or so, then you can have it perform your loop after your handler's been called 1000 times...
34 Eric R Menendez
emenendez22@... Send Email
Jul 12, 1999
1:21 am
I am trying to write a C program that will read in a text file consisting of Firstnames, last names, email, AIM screen name, ICQ number, and yahoo pager name,...
35 Samit Ray
Samit_Ray@... Send Email
Jul 12, 1999
5:32 am
Hi Eric could you show this interrupt handler in terms of code..... i am having a difficulty of trying to uderstand how it would look like. say i interpret...
36 Samit Ray
Samit_Ray@... Send Email
Jul 12, 1999
6:57 am
after some hunting .......got hold of GNU compiler and put in the following code. the output suprised me can somebody lead me out of the darkness...... the...
37 Dama Prem Kumar
dpkumar@... Send Email
Jul 12, 1999
7:29 am
There are two mistakes in your code. Please go thru the following for mistakes I marked my comments with '--->' Prem., ... eGroups.com home:...
38 enliteneer@... Send Email Jul 12, 1999
9:36 pm
An interrupt handler routine (ihr) is a stand alone function that is ONLY called when a specific event has occured (in this case, when a time tick has passed, ...
39 Eric R Menendez
emenendez22@... Send Email
Jul 18, 1999
2:11 am
THANK YOU!! It worked! -eRic ___________________________________________________________________ Get the Internet just the way you want it. Free software,...
40 Samit Ray
Samit_Ray@... Send Email
Jul 19, 1999
12:46 pm
i need to put some text using fputs into a file named abcd.txt now latter on i can view this file through the notepad editor which comes along with the...
41 Dama Prem Kumar
dpkumar@... Send Email
Jul 19, 1999
2:27 pm
Open your womdpws explorer view --> options --> Here there will be a list of file associations. In that you can secify it. ... eGroups.com home:...
42 Samit Ray
Samit_Ray@... Send Email
Jul 20, 1999
10:54 am
Hi Eric! i can't seem to find _dos_getvect or _dos_setvect in the dos.h file ... eGroups.com home: http://www.egroups.com/group/c-prog ...
Messages 12 - 42 of 75375   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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