There's almost certainly going to be a better way to do it, for instance you can write your own memory management functions and redirect...
OP: > When the input is ABCDE, i want the output to be EDCBA So do you need to reverse the string at all, or are you just outputting a string in...
Did you run that code cpulocksmith? What did word contain after it finished? What's the point of word[i] = word[i]; ?
> i=i++ Um, no. Either use i++ on its own or use i=i+1. Try as a test displaying the values of i and (b-1)-i in the loop instead. What values...
I don't know much about Deep Freeze; only came across it as a result of another thread on this forum which prompted a spot of Googling. I...
What database are you using?
> if(scanf("%d", &n)!=1)n=0; > }//end while So you'll only be able to make nodes containing the value 1. Is that intentional? What input do you...
It's one thing buying a computer from a dodgy source when you know what you're doing. If you're a beginner then you're an idiot if you don't buy...
The code is not difficult to follow and it is hard to see how it could be simplified further. What part(s) are you struggling to understand?...
xpi0t0s has reported a post. Reason:Irrelevant, and seems to be a dup of http://www.go4expert.com/showthread.php?t=16217 Another spammer needing...
Put a for loop around the code you want to repeat: cin<num_conversions; for (int i=0; i<num_conversions; i++) { // the code you want to repeat }
We don't do homework for people anyway so it doesn't matter that you're late asking. How exactly does your compiler not work? Are you getting...
The main thing about pseudocode (academic nonsense aside) is that it's a flexible tool intended to get your thoughts straight about how the...
It may be a good idea then to shelve this project until you've worked though a lot more of the book. Which book is it and what chapter? It seems...
xpi0t0s has reported a post. Reason:Garbage (spam?) Post: Çíàêîìòñâà Forum: Programming Assigned Moderators: coderzone Posted by:...
xpi0t0s has reported a post. Reason:Garbage Post: Çíàêîìòñâà Forum: Introduce yourself Assigned Moderators: N/A Posted by: Zasranka...
Not the questions I would ask but the thoughts I would process prior to that meeting. The questions themselves will drop out of the following...
char str[32]; strcpy(str,"Hello"); if (strcmp(str,"Hello")) { printf("Do you think this message will be displayed?\n"); } if...
That's not much of a try... Which part are you stuck on? What don't you know how to do? Are you hoping we'll write the program for you?
Can't you adapt what they have given? It's true that most tutorials don't give you code that will directly solve your problem, the idea is that...
Separate names with a comma.