Thanks, that's much more readable. It seems to work OK on my system. Changing the loop limits to 6 (instead of 32, and just to limit the total...
If those people were American, European or Israelis then speaking for myself as a Brit I imagine we'd have started talking turkey by now instead...
ohandusefsckingcode blockthereisagreatbighint rightwhereyoupost anewthreadthatssodam nobviousyoumustbeposi tivelytryingtoignorestuff.
itreallyhelpsi fyouusesom ebasicgram marcositsimp ossibletowor koutwtfyour eonaboutatlea stbreaklin esattheendof eachthoug htifyouca ntbearsedw...
You need to use a debugger that will work at the assembly level and will allow you to step through individual assembly instructions. See Section...
heh Mridula - you're closer than you think....
They're all in capital letters.
You need to enclose CREDIT/DEBIT in quotes otherwise Oracle will think this is an expression, i.e. CREDIT divided by DEBIT, and this is wrong...
The "challenges" at [snip] are not that good, the site just posts obfuscated code and bad C grammar and asks if you can work out what it does....
No, because brain[NO SPACE]storm is one word of 10 letters, not 2 words of 5. Anyway, it won even though it was the wrong answer, so well done!
I'm not sure about that; I'll guess at QUICK IDEAS.
If you're allowed to use the BIOS then it's fairly easy; just write a program in C that does the same, then step through it at the assembler level...
Great stuff! What were the final commands you used? Assuming you mean how can you get an icon using pure C++ code without any resources: You...
Post the exact error please, not a vague interpretation of what you think it might say.
Can you specify the icon in the shortcut properties (Change Icon button)? If so then it's just a case of checking the resource compiler syntax to...
Yep, so you would need to read a character from the user, open and search the file for that character in exactly the same way you currently do,...
So that needs compiling with the resource compiler to produce a .res file, then you can add the .res filename to the link line. The resource...
That's compiler specific (all #pragma's are). Forward declarations are portable.
> there's nothing that cannot be done without forward declaration Yes there is. class A { B *b_ptr; }; class B { A *a_ptr; }; This is...
OK, so the first step is to make the variables local to main, so change: int value,rem,bill_50,bill_20,bill_10; void dispenser(); int main(void)...
Separate names with a comma.