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 8174 - 8203 of 8312   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8174
No, nothing in this group. I did have some bad experiences as a newbie in the C programming chat channel ##C on Freenode (there is another chat channel on...
Lori Nagel
jastiv
Offline Send Email
Feb 1, 2008
8:43 pm
8175
... O.k., I understand your point. I am sorry to learn these news. I've never touched Freenode, but it seems it's not a good place for beginners. Good to know....
Nico Heinze
nico_heinze
Offline Send Email
Feb 1, 2008
8:46 pm
8176
... but i am not familiar in c so pls help me...
sathiskumar1989
Offline Send Email
Feb 3, 2008
6:12 pm
8177
... Satish, would you please be so kind as to include the relevant portion of the original text you refer to? This way no one of us can understand what you're...
Nico Heinze
nico_heinze
Offline Send Email
Feb 3, 2008
8:19 pm
8178
I am a little new to C++ and I need a little help with some code. Here is what the solution is suppose to do. The user enters their current age and it is...
crdoiron
Offline Send Email
Feb 4, 2008
10:29 am
8179
... <snip> ... And here lies the error; as you want to _increase_ the balance by interest each year, you should take: NewBalance = NewBalance * (1.0 +...
Nico Heinze
nico_heinze
Offline Send Email
Feb 4, 2008
10:40 am
8180
Hello friends, Given a irregular shape object.Suggest me ways to find centroid for given object. thanq Swathi...
swathi_prayaga
Online Now Send Email
Feb 8, 2008
8:14 pm
8181
If anyone can provide suggestions, links or pointers on this question it would be greatly appreciated. How can one make code written in C++ executable in by a...
Gerhard
gerhard8161
Offline Send Email
Feb 10, 2008
6:45 pm
8182
I have C programs (not C++) written for DOS, compiled using the old STDIO.H protocols, resulting in EXE programs for DOS, usable for batch file convenience. ...
Neil Orme
neilorme
Offline Send Email
Feb 10, 2008
6:46 pm
8183
... <snip> Hi Gerhard, personally I don't see any useful way to prevent malevolent people from decompiling code. As long as we're working with these Von...
Nico Heinze
nico_heinze
Offline Send Email
Feb 10, 2008
6:48 pm
8184
... In principle, yes. There are console-mode applications available in the VS compilers. The safest way is to write your own stdio.h file and a conversion ...
Nico Heinze
nico_heinze
Offline Send Email
Feb 10, 2008
6:51 pm
8185
... If it can be run by a computer it can be decompiled. The best you can acheive is to make the resultant executable as obfuscated as possible. Which isn't...
Paul Herring
Shabble
Offline Send Email
Feb 10, 2008
7:17 pm
8186
... Any legitimate company would not attempt to decompile your code and/or cancel your contract and continue to use it. Legal contracts such as "Terms of Use"...
~Rick
thefirstrepa...
Offline Send Email
Feb 10, 2008
8:36 pm
8187
hi , this saksham wnt to knw abt this command which i mention below memcpy() //this is an command which is used in c and als in c++ program but the problem...
perfectdance2050
perfectdance...
Offline Send Email
Feb 24, 2008
9:48 pm
8188
I can't seem to find this segfault. Can you all help me? Here's my code: 23 bool Battle::initialize() 24 { 25 if (SDL_Init(SDL_INIT_VIDEO) != 0) 26 { 27...
Michael Sullivan
msulli1355
Offline Send Email
Feb 24, 2008
9:48 pm
8189
... <snip> First: memcpy() is a C runtime function and should NOT be used in C++; the whole memory management system in C, consisting of malloc(), free(), and...
Nico Heinze
nico_heinze
Offline Send Email
Feb 25, 2008
6:41 am
8190
I have a project - an RPG game I worked on years ago that was written in Java. I'm attempting to port it to C++. I've hit a small snag. I have two classes,...
Michael Sullivan
msulli1355
Offline Send Email
Feb 27, 2008
5:24 am
8191
... Hi Michael, I totally understand that you didn't like their suggestions. Sometimes the experts over there tend to exceed the target. :-) The "include...
Nico Heinze
nico_heinze
Offline Send Email
Feb 27, 2008
7:08 pm
8192
... I've been thinking about this all afternoon and I've come up with an idea; I'll remake my Battle class into a BattleDriver class, and then move all the...
Michael Sullivan
msulli1355
Offline Send Email
Feb 27, 2008
10:07 pm
8193
OK, As a recap, I have moved my graphics-drawing stuff to a class called Draw and want BattleDriver class to manipulate the screen through a Draw object. I...
Michael Sullivan
msulli1355
Offline Send Email
Feb 28, 2008
3:37 pm
8194
... My question back is: why do you want to have the "party" in the Draw class? An object draws itself onto the screen using its very own Draw object; why on...
Nico Heinze
nico_heinze
Offline Send Email
Feb 28, 2008
4:05 pm
8195
... Here's the code for draw.cpp. Maybe it will help things make sense: #include "draw.h" #include <stdio.h> #include <stdlib.h> #include <SDL/SDL.h> #include...
Michael Sullivan
msulli1355
Offline Send Email
Feb 28, 2008
4:11 pm
8196
... Better yet, I've posted a screenshot of the running program in it's current state to http://www.espersunited.com/~michael/Screenshot.png . See the area at...
Michael Sullivan
msulli1355
Offline Send Email
Feb 28, 2008
4:17 pm
8197
... I've got a theory; Draw doesn't need access to the Allys or even the party array; just the data inside the Allys. I can write a method in BattleDriver to...
Michael Sullivan
msulli1355
Offline Send Email
Feb 28, 2008
4:47 pm
8198
I have a main.cpp which ATM is the driver of my program. main creates a BattleDriver object, which in turn creates a Draw object. I have a method in...
Michael Sullivan
msulli1355
Offline Send Email
Feb 28, 2008
5:54 pm
8199
... <snip> Now I understand why you want the "party" array available here. May I suggest that you change the design at this point? If I understand your code...
Nico Heinze
nico_heinze
Offline Send Email
Feb 28, 2008
7:54 pm
8200
... I like your idea about using one Draw object for everything. How exactly would I implement that?...
Michael Sullivan
msulli1355
Offline Send Email
Feb 28, 2008
8:06 pm
8201
... In case anyone was wondering, the problem was in this line: battledriver.cpp:void BattleDriver::displayScreen() { draw.drawScreen; } It should have been: ...
Michael Sullivan
msulli1355
Offline Send Email
Feb 29, 2008
1:25 pm
8202
Hi Guys I have inserted the portion of the codes which gives me an error. ... This is the small part of <frontend.h> typedef enum fe_status { FE_HAS_SIGNAL...
Shiva Kumar
cshivain2000
Offline Send Email
Feb 29, 2008
5:18 pm
8203
I have started C just few days back and i completed Till Nested if- else...Now the problem is that " I have completed all given exercises in the book and i m...
Don
rahuldhanpat
Offline Send Email
Mar 1, 2008
5:04 am
Messages 8174 - 8203 of 8312   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