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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 69013 - 69042 of 71513   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
69013
Hello list, I've got a quick question. I have a function that is being called numerous times in a loop. Before this function is called, things seem to work...
Tyler Littlefield
tyler@...
Send Email
Jan 1, 2009
8:44 pm
69014
P.S. I've ran gdb on this and traced it through about 30 loops. I watched the while loop for a bit, then dropped down in to the pole function and watched that...
Tyler Littlefield
tyler@...
Send Email
Jan 1, 2009
8:51 pm
69015
I think you should check for the mode you are opening the log file to write. Are you opening this file in append mode to write? - Niranjan. ... From: Tyler...
Niranjan Kulkarni
guruofcpp@...
Send Email
Jan 1, 2009
8:58 pm
69016
it shouldn't set it to 0. the program isn't closed until after the logs get written. ... From: Niranjan Kulkarni To: c-prog@yahoogroups.com Sent: Thursday,...
Tyler Littlefield
tyler@...
Send Email
Jan 1, 2009
9:28 pm
69017
p.s. A friend pointed out the problem with me creating the string and then reassigning to the pointer... I'm to used to c#, wasn't thinking. I fixed it, and it...
Tyler Littlefield
tyler@...
Send Email
Jan 1, 2009
10:25 pm
69018
hello, sorry for all the posts on this topic. I finally got tweaking on the code some more and fixed the problem. everything is working great. Thanks chris,...
Tyler Littlefield
tyler@...
Send Email
Jan 1, 2009
11:07 pm
69019
... Someone has had too much coffee ;-) ~Rick...
Rick
thefirstrepa...
Offline Send Email
Jan 2, 2009
12:08 am
69020
... I think I should point this out really quick. You aren't setting your "msg" string correctly. Whenever the compiler sees a string literal, "New connection...
Christopher Coale
chris95219@...
Send Email
Jan 2, 2009
4:48 am
69021
only read the book which name is starting C-Languge.i was learnig this languge from this type of book very well and m.t.savalia the auther of my book. yes,i...
mandip_89
Offline Send Email
Jan 3, 2009
8:42 pm
69022
Hi folks, I have an issue with anonymous pipes.. Steps I followed : Created a Pipe with 2 Handles .. " SECURITY_ATTRIBUTES childstdoutattr; ...
Gopi Krishna Komanduri
gopikomanduri
Offline Send Email
Jan 4, 2009
2:31 pm
69023
Hi, i notice this line: #pragma pack(push,1) struct TGAHeader { bla bla bla... }; #pragma pack(pop) what is the definition of pragma exatly? i use this struct...
Jos Timanta Tarigan
jos_t_tarigan
Offline Send Email
Jan 6, 2009
12:07 am
69024
On Mon, Jan 5, 2009 at 7:07 PM, Jos Timanta Tarigan ... #pragma is a directive for implementation specific information for the compiler. What compiler and what...
Brett McCoy
smartandkewl
Online Now Send Email
Jan 6, 2009
12:22 am
69025
push is a m$ thing, though I'm not sure what it is. Thanks, Tyler Littlefield http://tysdomain.com ... From: Brett McCoy To: c-prog@yahoogroups.com Sent:...
Tyler Littlefield
tyler@...
Send Email
Jan 6, 2009
12:34 am
69026
On Tue, Jan 6, 2009 at 12:07 AM, Jos Timanta Tarigan ... It's for compiler specific features. From the context (it's using something called pack(), and it's...
Paul Herring
shabble
Offline Send Email
Jan 6, 2009
3:11 am
69027
... pack() is a VC++ specific #pragma directive. It declares the padding of the structure's variables. Assuming a 32-bit target, VC++ will pad each variable...
Thomas Hruska
shininglightpro
Offline Send Email
Jan 6, 2009
3:58 am
69028
I'm curious here. I've heard about exploits from struct loading, not checking buffers. Say the struct looked something like this: typedef struct { char uflag; ...
Tyler Littlefield
tyler@...
Send Email
Jan 6, 2009
4:14 am
69029
... typedef struct { char uflag; int length; } header; Is somewhat of an insufficient example. But here is how someone might do something malicious. Let's...
Thomas Hruska
shininglightpro
Offline Send Email
Jan 6, 2009
6:18 am
69030
hi, thanks all, but can some1 sum it up in a more 'noobish' way? :D im using GCC 4.0 as compiler, under OS X using IDE XCode. The compiler is integrated. so...
Jos Timanta Tarigan
jos_t_tarigan
Offline Send Email
Jan 6, 2009
1:13 pm
69031
On Tue, Jan 6, 2009 at 1:13 PM, Jos Timanta Tarigan ... To pick one implementation: Every item in the struct takes up 1, 2 or 4 bytes (more if there's an array...
Paul Herring
shabble
Offline Send Email
Jan 6, 2009
1:33 pm
69032
Hi I am converting an application from VS6 to VS7 (vs2003). There are some code which are asm. When I am trying to compile the files, its throwing errors....
gsronline
Offline Send Email
Jan 6, 2009
2:13 pm
69033
... just find codes on the net, try to rewrite it (my own way) :) thanks for the answers, really helpfull regards Jos Timanta Tarigan...
Jos Timanta Tarigan
jos_t_tarigan
Offline Send Email
Jan 6, 2009
5:21 pm
69034
... Visual C++ doesn't use the AT&T assembler that GCC uses. When you inline ASM in Visual C++, it is using MASM, and you have to type the "__asm" keyword. ...
Christopher Coale
chris95219@...
Send Email
Jan 6, 2009
9:25 pm
69035
... I'm pretty certain there is no MASM interaction with inline assembler. Especially since I have a bunch of it here on my computer and have not seen MASM...
Thomas Hruska
shininglightpro
Offline Send Email
Jan 7, 2009
4:59 am
69036
Hello, I would like to get into software testing so I search for some source of information. I searched Google for some of them (eg. Ron Patton, Software...
lukas
xoliva02@...
Send Email
Jan 7, 2009
9:55 am
69037
... Paul Herring, one of this group's moderators, runs another group called 'softwarequality' (http://tech.groups.yahoo.com/group/softwarequality/). You should...
Thomas Hruska
shininglightpro
Offline Send Email
Jan 7, 2009
1:36 pm
69038
Recently we studied the software testing course and I personally like the "A Practitioner's Guide to Software Test Design" by Lee CopeLand. Regards Abdullah ...
Mirza Abdullah Jan
jan576pk
Offline Send Email
Jan 7, 2009
1:47 pm
69039
Someone I used to work with was keen on test driven development: http://en.wikipedia.org/wiki/Test-driven_development Haven't used it myself or read any of the...
John Matthews
johnmatthews...
Offline Send Email
Jan 7, 2009
3:09 pm
69040
... The problem with this is that you don't know what to test for until you've written the code. Maybe some much more organised people than me can specify ...
David Hamill
dc_hamill
Offline Send Email
Jan 7, 2009
3:25 pm
69041
On Wed, Jan 7, 2009 at 3:25 PM, David Hamill <david@...> wrote: [...] ... If you're employed to write software, then this is exactly what you're ...
Paul Herring
shabble
Offline Send Email
Jan 7, 2009
5:23 pm
69042
Hi, Im trying to make a function that return a 2D array that size are dependent to the other parameter eg: Color[][] scan( width, height) so the method will...
Jos Timanta Tarigan
jos_t_tarigan
Offline Send Email
Jan 7, 2009
11:14 pm
Messages 69013 - 69042 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