Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for jakizak

I find that if something takes longer than a few hours to do, my patience runs thin, so then my temper starts to flare ;) So, how long does it take others to Begin the classic desk thumping, space slamming, vocal announcing that you are now highly annoyed ;)

Member Avatar for Ancient Dragon
0
220
Member Avatar for foreshadowed

Greetings all; what I'm trying to do is create an array of structs dynamically by using functions for allocation, display, and then freeing memory. I'm *able* to do the process if it's within scope of the foo declaration, but the initFoo function throws an exception. I *think* it's the order …

Member Avatar for MonsieurPointer
0
147
Member Avatar for ilovec++

Do you use a joystick/gamepad(or whatever else) for gaming purposes? Or do you use the traditional Mouse + Keyboard combo for playing games? My Personal opinion: Mouse + Keyboard. Reasons: 1)The mouse is much more sensitive and flexible, and then again, some games don't support a joystick. 2)I'm still unfamiliar …

Member Avatar for ilovec++
0
919
Member Avatar for ChrisMackle

Hey, im new to C++ forums and C++ for that matter. Im 16 years old and want to be a game developer so i made a calculator it took about 30min(a while i know but im a beginner) can someone tell me if what ive done is good code or …

Member Avatar for WaltP
0
184
Member Avatar for mccarthy.den

hello everyone. couple of days back i started learning C (with the help of internet) i have do while loop which i can't get to work as long as i know, when i press 'y' it should again ask temperature. but it is not doing that. i am using Turbo …

Member Avatar for WaltP
0
133
Member Avatar for Se7Olutionyg

I want to open different file names, at first it work well on couple files, but it has to be in order, what if i open random file like fall01, fall05,srping09 etc Thanks [CODE]#include <stdio.h> #include <string.h> #include <stdio.h> #include <stdlib.h> using namespace std; #include <iostream> int main() { FILE …

Member Avatar for D33wakar
0
187
Member Avatar for saravinuya

Can someone help me with my program. I have the code but there are some logical errors. The program should contain 100 numbers that have a menu, first the user should input a number then the menu will show: 1. it adds again a number, 2. it displays all the …

Member Avatar for dev90
0
240
Member Avatar for Master Mascus

[CODE]#include <stdio.h> #include <stdlib.h> int twento(void); int main(int argc, char *argv[]) { int number1,number2,sum1=0,sum2=0; do{ printf("Player 1 you start to play:\n"); number1=twento(); sum1 = number1 + sum1; printf("Player1 Your sum is %d\n",sum1); printf("Player2 Your turn to play:\n"); number2=twento(); sum2=number2+sum2; printf("Player2 Your sum is: %d\n",sum2); if (sum1==21)printf("\nPlayer1 You win"); else if(sum2==21)printf("Player2 …

Member Avatar for foreshadowed
0
102
Member Avatar for ken.atienza

I use the top table as a cart for 1 customer, and the bottom table for order. I wanted to get the productprice, productname, productqty and put it into orderdetail field. Help and suggestions are very much appreciated. Thanks in advance. *attached a pic of the tables.

Member Avatar for foreshadowed
0
72