Search the web
Sign In
New User? Sign Up
c-prog · C/C++ Programmer's Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 40536 - 40565 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
40536
Write a program that will generate all the consecutive prime numbers between an range chosen by the user. Each prime number should be separated by a space and...
loveuelly12
Offline Send Email
Nov 1, 2004
8:16 am
40537
hey u want to create shared lib \or ur own lib independent of other libs.. regards Amitesh Singh ISM Dhanbad matifq <matifq@...> wrote: Hi How to make...
amitesh singh
amitesh4u_ism
Offline Send Email
Nov 1, 2004
1:40 pm
40538
Hi, Whatever may be the processor, We'll set or reset any particular port pin by either writing either 1 or 0. similarly how to set a port pin to high...
prabhakaran shunmugav...
karan_ece99
Offline Send Email
Nov 1, 2004
1:56 pm
40539
Hi, Reply embedded... ... IIRC, some where in the IDE, you can specified the directory of the include file. I can't really remember how to get there, or...
Shyan Lam
sflam108
Offline Send Email
Nov 1, 2004
5:15 pm
40540
... Read your manual. On some processors it's sufficient to set the port high. BTW, this has NOTHING to do with C (or C++) ... Victor A. Wagner Jr....
Victor A. Wagner Jr.
vawjr1943
Offline Send Email
Nov 1, 2004
5:19 pm
40541
You can add any statement to read input from stdin, like getc(), or issue a "pause" command in the system() function. However, I would advice not to do those,...
Shyan Lam
sflam108
Offline Send Email
Nov 1, 2004
5:38 pm
40542
Class Wizard is replaced by "Properties Window" in VC++.NET. - Make sure the dialog source is the active document. - Press F4, or View -> Properties Window. -...
Shyan Lam
sflam108
Offline Send Email
Nov 1, 2004
6:08 pm
40543
thx ! it is strange to see how slight modifications in my habits can perturb me... it will certainly be the same problem with the next version anyway ! ...
repplst
repplst@...
Send Email
Nov 1, 2004
7:55 pm
40544
... You can't. ANSI C/C++ are oblivious of implementation-specific issues like stack space. A program could use the heap for all C/C++ cares. That said, ...
Thomas J. Hruska
shininglightpro
Offline Send Email
Nov 1, 2004
10:17 pm
40545
In a message dated 10/26/2004 3:10:01 AM US Eastern Standard Time, ... Have you tried sending a blank message to < mailto:c-prog-unsubscribe@yahoogroups.com>?...
abram10@...
abrammagner
Offline Send Email
Nov 1, 2004
11:05 pm
40546
... Hash: SHA1 On Tue, 26 Oct 2004 15:27:02 +0530 ... If he read the mail, he would see this at the bottom of new posts. Or posts < specified length by yahoo. ...
Ed
psy80uk
Offline Send Email
Nov 1, 2004
11:27 pm
40547
Doesn't VS.net (v7) have a "GUI grid window" to help design GUI interfaces for C++ windows apps? I can find one for C# and VB but not for C++ .... Is it not...
Jared Sowers
jsowers@...
Send Email
Nov 1, 2004
11:28 pm
40548
... Hmm...well, given this is a pretty basic assignment, I'll hedge my bets that your teacher won't go beyond 32-bit integer limitations. This means only the...
Thomas J. Hruska
shininglightpro
Offline Send Email
Nov 2, 2004
1:47 am
40549
Hi , Just out of the top of my head... I think there is options menu, where you would find Compiling, Linking and Directory settings. You can go to the...
raj77_in@...
raj77_in
Offline Send Email
Nov 2, 2004
3:47 am
40550
hi! in case of c++ how about declaring a function inside a class and using the sizeof function for an object of that class?im new to programming so not sure . ...
Sowmya G
sowmya276
Offline Send Email
Nov 2, 2004
9:17 am
40551
in c++ if u define function inside class.. then u see class ABC { int i; int fun(); }; ABC a; then sizeof(a) in unix machine it will show 4. but in class if u...
Bhasker Agrawal
ab_bhasker
Offline Send Email
Nov 2, 2004
9:49 am
40552
Hi Sujeet, I was just wondering the order of the memory allocation in the stack. It would be in the following manner. ... ESP======>> | a | ... with a...
chandan talukdar
hibablu
Offline Send Email
Nov 2, 2004
11:34 am
40553
hey this order is followed for the arguments not for the local variables... e.g. int abc(int a,char b) { int c; char d; } here the stack overview is like that...
amitesh singh
amitesh4u_ism
Offline Send Email
Nov 2, 2004
12:18 pm
40554
Hi Amitesh, I think it applies to local variables also. Please find the snippet of code below: #include <stdio.h> void abc(void); void main() { abc(); } void...
chandan talukdar
hibablu
Offline Send Email
Nov 2, 2004
12:31 pm
40555
Don't forget about variable padding (alignement) and optimizations that completely remove the variable either in favour of a const or a register... Or about...
tweety
tweety_04_01
Online Now Send Email
Nov 2, 2004
5:09 pm
40556
Hi chandan Let's remember that what I said that STACK IS GROWING DOWNWARDS TOWARD LOWER MEMMORY ADDRESS(or address is growing upwards)..... hence the addresses...
amitesh singh
amitesh4u_ism
Offline Send Email
Nov 2, 2004
11:48 pm
40557
Hi, can somebody read over this and explain what i should put in my code to get the output that i need, thanks Batting Averages - Parallel Arrays Part 1 Write...
Dan Nguyen
dannguyen98
Offline Send Email
Nov 3, 2004
12:16 am
40558
I have a binary file that i am scanning for certain values. How can i open up a file and search for a hex value throughout the file. Then when the prog finds...
Riany f Klrac
gimpyclaus
Offline Send Email
Nov 3, 2004
1:15 am
40559
hi to all .... I got prob making shared lib using assembly.... Let me make it clear............ addint.c int addint(int a,int b) { return (a+b);} $gcc -fPIC -c...
amitesh singh
amitesh4u_ism
Offline Send Email
Nov 3, 2004
2:24 am
40560
Hi friends, I need help in deleting data from files using C++. Any trick shall be of great help. Thanx in advance....
Sandeep Bhandari
sandeepbhand...
Offline Send Email
Nov 3, 2004
6:00 am
40561
Hi Amitesh, I went through your thorough analysis. The thing we both have missed over here is the machine architecture. When I ran the test program which was...
chandan talukdar
hibablu
Offline Send Email
Nov 3, 2004
7:15 am
40562
Dear Group members, i dont know who can help me now.but its grate help to me. i strongly believe someone defintely help me by understand my situation friends i...
ignitedmind4s
Offline Send Email
Nov 3, 2004
7:19 am
40563
Hi Gimp, actually that's as easy as could be: #include <unistd.h> #include <stdio.h> #include <string.h> #define MAXBUFSIZE (1<<14) int fd; char...
Nico Heinze
nico_heinze
Offline Send Email
Nov 3, 2004
8:40 am
40564
Make use O_TRUNC flag in the open system call. Regards, Satya Prakash Prasad. ... __________________________________ Do you Yahoo!? Check out the new Yahoo!...
Satya Prasad
satya_prakash_prasad@...
Send Email
Nov 3, 2004
8:40 am
40565
Hi, I'm new to this group and new to C programming. I'm facing problem to convert VB code to C language. May I know how to convert TRIM(string, "test") in VB...
ling_00_my
Offline Send Email
Nov 3, 2004
8:44 am
Messages 40536 - 40565 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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