" data-bs-original-title="" title="">
[QUOTE=max2011;1437914]hi. i am marsh a student guys i have a activity but i don't know to start it with a loop. can you help me? ***** ***** **** **** *** *** ** ** * * ** ** *** *** **** **** ***** *****[/QUOTE] This is actually easier than the corresponding …
>void main (void) This is not (and never has been) correct C. The main function returns int. >a variable of type char is just an 8-bit int. Just to be thorough, even though your reply is over a week old, char is only guaranteed to be [i]at least[/i] eight bits.
I know that it's easy to misread "Daniweb" as "rent-a-coder", but we don't do that here. If you have a specific problem we can help you, but we won't do your work for you and hand it to you on a silver platter.
The guy already had his interview, binoj_daniel. You're a year late.
Here's as simple as it gets with separate chaining, with some rudimentary testing. I wrote it in a few minutes, so don't blame me if there are bugs. ;) [code=c] #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct node { char *data; struct node *next; } node; unsigned djb_hash ( …
Is <iostream.h> the new <graphics.h>? :icon_rolleyes: Here's an idea: update your code to use <iostream> if your compiler doesn't support the non-standard and non-portable <iostream.h>.
[code] if (islower(*sPtr)) *sPtr = toupper(*sPtr); [/code] There's no need for islower because toupper will convert the character as requested, or do nothing if there's no conversion or if the character is already upper case. In other words, toupper "just does the right thing". However, because your function can't guarantee …
[QUOTE]Is there a basic criteria for a entry level programmer?[/QUOTE] When hiring entry level programmers, I've always looked for three things: [list=1] [*][B]Willingness to learn[/B]: Since we're talking about bottom of the barrel as far as applicable skills goes, the candidate absolutely must be a sponge for knowledge. [*][B]Passion[/B]: Entry …
>why are there so many programming languages out there? [satire] I was wondering, why are there so many tools out there? I mean, I've learned a bit of hammering, a bit of wrenching and a bit of screwdrivering (which I didn't like) and I was wondering, why others keep making …
>this seems to work but only for up to 4 letter words somehow. It seems the size of a pointer is four bytes on your system. >char * ret = (char*)malloc(sizeof(array) + 1 + 1); sizeof doesn't do what you want here. It's giving you the size of a pointer, …
Last I checked (which I admit was a while ago), there weren't any free tools that I would put on a list along with splint. I use PC-Lint and Flexelint for C++ but they're neither free nor cheap.
I suspect they use several. Can you be more specific about which feature of facebook you're referring to?
[QUOTE]Hi Can you change my username to libertyreservehosting[/QUOTE] Can do.
I imagine that those are member functions and their definitions need to be prefixed with [INLINECODE]playerType::[/INLINECODE].
The End.