i agree with techme. he has said the right thing. you have to implement the header file where it needed.
This might work. It isn't complete by any means, but is a general approach. Code: char numerals[80]; int numeralCount,i; int...
Re: Tell me the difference Thanks to every body for helping me.
I can't find the difference between 'getch()' and 'getche()' Please help me.
here is my Tic - Tac - Toe program (undefeated, by the way), you can work off of it if you like download the attachment
oops i thought you meant the char variable well what kenshin did was created a string variable called gender. either by declaring a string like...
i thought a char variable could only be one character, so when u say gender="male" etc., isnt that illegal? dunno.
I need to create a folder in C using assembler, this is what I have: union REGS registros; registros.x.dx = Here I have to put the name of the...
is it possible?
> Deck's constructor to be able to create a Card so that I can put it into the array just use card's constructor to create an anonymous card...
We've got quite a few problems here. You define some global variables then try to define them again within the function. The prototype says the...
I'd do it incrementally at each stage, eg. x^3 to x^5 to x^7; at each stage multiply by x squared (which you pre-calculate). 3! to 5! to 7!; at...
My Pleasure... :)
Hey inspiration! Try this, #include <iostream> template<class B1, class B2> class MyBook { B1 book1; B2 book2; public: MyBook(B1 b1, B2 b2) :...
try this code. #include <stdio.h> void main(){ char* yourName; printf("Please enter your name: "); scanf("%s", yourName); printf("\nWelcome %s, I...
The way I've solved this kind of problem in the past is to use some kind of Perl script (or another scripting language of your choice) to 'edit'...
Are you trying to implement some kind of unique ID feature? I would typically use something like this int makeUniqueID ( void ) { static int id...
I've been playing around with beep - I know you said more than beep, not not professional -- so I think this may work; using beep(freq, time) you...
Is (end - begin) just sometimes 2 or is it always 2? What is ftellp()? I assume you mean ftell()? Shouldn't you give ftellp a parameter when...
Have you declared type string? If not, just use "char *" instead of string. void longDiv(string *result, string input, int divisor) I've set...
Separate names with a comma.