5,237 Posted Topics
Re: And in [URL="http://cboard.cprogramming.com/showthread.php?t=109827"]other news[/URL], reports are coming in from all over the web about the same thing happening elsewhere. [URL="http://www.catb.org/~esr/faqs/smart-questions.html#forum"]Experts agree[/URL] that there is only one possible solution. | |
Re: > please help to correct if you can. Why? Could it be because you posted on the wrong forum? There is a forum just for Java you know Or could it be because you ignored ALL the information about code tags. See your other post as well. | |
Re: "Can" - yes, lots of people here "can" "Will" - probably not, it's your homework, you make an effort which is more than an exerise in copy and paste of your assignment. [url]http://www.catb.org/~esr/faqs/smart-questions.html[/url] | |
Re: [url]http://www.catb.org/~esr/faqs/smart-questions.html#urgent[/url] Not to mention, the unindented code which is simply awful to look at. | |
Re: > Can someone help? [url]http://www.catb.org/~esr/faqs/smart-questions.html#prune[/url] | |
Re: How about some specs for your machine. How about mentioning which of the myriad of operating systems you're actually using. Saying "task manager" might infer Microsoft windows, but that's still too many to guess. Is that "left on for an hour, but in constant use", or "left on for an … | |
Re: What do you get if you - divide by 10 - take the integer part - multiply by 10 | |
Re: Or you could just spam the crap out of the online forums and [URL="http://cboard.cprogramming.com/showthread.php?t=109766"]waste peoples time in parallel.[/URL] | |
Re: [url]http://www.daniweb.com/forums/thread124172.html[/url] Same set of standard replies, then you post some actual effort. | |
Re: > Write a program that will do the following: No, you read the forum rules first, then post some effort. | |
Re: Now, if the damage to the US banking system had been done by some external agent, GW (bless his little cotton socks) would be declaring war (with a $700Bn price tag). But because the damage was done by a bunch of brown nosing yahoo's from the old boys club, who'll … | |
Re: Sure, just look at how you call mainmenu(), and follow the same pattern. | |
Re: > IDIV ebx does this leave the result you want in esi? > DWORD PTR CIPHER[edi] It's a char array, not an array of dwords. You're processing 4* as much data as you expect. also xor al,bl etc, for bytes. > void ENCRYPT_CPP(char buffer,int count, char CIPHER,int CIPHER_LENGTH); Missing [ … | |
Re: Get nice and comfortable, this is a long read [url]http://www.faqs.org/faqs/compression-faq/[/url] | |
Re: > Using strtod causes a segment error, If that's your reason for NOT using it, then you've got bugs in your code. Simply using another function does not make those bugs go away. All that will happen is that sooner or later, you'll stumble across some other problem. Then, as … | |
Re: How many characters does "/file1000" and a \0 have? Is there room for that in your variable? Well not that one, the later ones are in trouble. | |
Re: Does [URL="http://www.lmgtfy.com/?q=DIMM+memory+tester"]this device exist?[/URL] Helpless? [url]http://www.innoventions.com/ramcheck/ramcheck.htm[/url] [url]http://www.memorytest.com/[/url] | |
Re: [url]http://forums.devshed.com/c-programming-42/how-to-compile-c-in-linux-573575.html[/url] | |
Re: Well since the file is stored as a b c\nd e f What's going to happen to the 2nd line when you add XX to the first? There is no "insert" function for a file. Unless you're replacing N bytes with N bytes, you need to read from one file, … | |
Re: In other words, take someone elses work (probably copyrighted no doubt), and mung it enough to pass it off as your own work. | |
Re: That's l-value, not 1-value (lowercase-L) Read up on bitwise operators. lParam &= ~0xFFFF; lParam |= ( somenum & 0xFFFF ); | |
Re: [URL="http://www.chambersharrap.co.uk/chambers/features/chref/chref.py/main?query=debris&title=21st&sourceid=Mozilla-search"]debris[/URL] | |
Re: Perhaps you should begin by describing why you need the extra memory. Perhaps we could tell you about an alternative which uses less memory. | |
Re: > while (x || y != 00) ; 1. Remove the ; at the end 2. This isn't basic. If you want to compare both with 0, then do while (x != 0 || y != 0) > z = (x,y); Meaning what? z = y; is what you've written. … | |
Re: See answer @devshed. [url]http://www.catb.org/~esr/faqs/smart-questions.html#forum[/url] | |
Re: Read the whole line with fgets() Tokenise is with strchr(), strtok() or anything else you can think of. | |
Re: 1. Your indentation sucks. A consistently applied indentation style will save you from no end of disasters (and confusion) in the long run. [code] #include <stdio.h> #include <string.h> #include <stdlib.h> void convert(int, char); //declaration of function to convert numerals void convert(int value, char roman[50]) { while (value >= 1000) { … | |
Re: I looked around, couldn't see anything on fire, so concluded there was nothing urgent. [url]http://www.catb.org/~esr/faqs/smart-questions.html#urgent[/url] | |
Re: [URL="http://kwc.org/mythbusters/2006/12/episode_68_christmas_tree_ligh.html"]On December 24-26, there will be about 10,000 fires from Christmas trees[/URL] It might be fun to try with some small LED based lights, but I wouldn't leave it running unattended running mains powered lights. | |
Re: Or fairly portable libraries like ncurses. | |
Re: What sort of error message(s) do you get? Did you check the spelling? Did you check that your include guards are correct? If you re-use them in another file (say copy/paste without a complete edit), then you lose. Are there any other maze.h files lying around, say in another directory? … | |
Re: Apparently, mkdir() takes 2 parameters. [url]http://www.rocketaware.com/man/man2/mkdir.2.htm[/url] One wonders whether - you read the manual before calling it - included the appropriate header file which would have warned you about too few parameters - mis-took early success on other platforms as a sign of bug-free code. | |
Re: > void main() Has nobody mentioned that main returns in in your previous 60 messages? Or did you just ignore them. Where do you - set frequency to zero? - determine that the word is already in the tree, and thus increment the frequency > else(start->item==freakword); I'd be surprised if … | |
Re: And if you're still stuck after reading, then tell us which compiler you're using. | |
Re: Taking this example, Lets say I transmit 010[COLOR="Red"]0[/COLOR]1101 Does erasure mean you receive 0101101 Send 8, got 7 Or does it mean 010[COLOR="Red"]1[/COLOR]1101 The data has been 'erased' because the bit has been flipped in transmission. Flipping a bit is just xor | |
Re: > - I tried %[a-zA-Z], but that doesn't work for some reason. Well we don't know what you tried. Nor do we know what else is in the file. Most likely, you didn't skip all the stuff which is in [^a-zA-Z] and thus you got stuck. | |
Re: Dunno, can you explain [URL="http://www.lmgtfy.com/?q=risk+management+process"]this?[/URL] | |
Re: Apparently, you didn't know you should have used code tags either, despite all the places where it gets mentioned. | |
Re: > hi all. Hello. > Im developing project in c++ with dll, exe and GUI application (EXE) Interesting, continue... > Is there any way for GUI to make access to EXE's data without using COM [URL="http://www.catb.org/~esr/faqs/smart-questions.html#prune"]Yes there is a way, several in fact[/URL] Files, fifos or shared memory spring to … | |
Re: [url]http://babbage.cs.qc.edu/IEEE-754/Decimal.html[/url] Enter 5.5, look at the bit pattern. Look familiar? | |
Re: [ICODE]awk '{ a = getline; print $0, a }' file[/ICODE] | |
Re: Consider that your command line parameters are actually stored in memory in a single block of memory. [code] ./StockOrders\0datafile\0logfile\0server\0client ^ ^ ^ ^ ^ [0] [1] [2] [3] [4] [/code] Then you come along with [icode]strcat(argv[3], "_fifo")[/icode] And now it looks like this [code] ./StockOrders\0datafile\0logfile\0server_fifo ^ ^ ^ ^ ^ … | |
Re: Well ordinarily, your data in the class wouldn't be public to begin with. Making it public defeats the whole purpose of having classes at all. | |
Re: [url]http://www.daniweb.com/forums/thread159042.html[/url] [url]http://www.daniweb.com/forums/thread159142.html[/url] [url]http://www.daniweb.com/forums/thread159161.html[/url] [url]http://www.daniweb.com/forums/thread159192.html[/url] How many more versions are you going to grace the board with? | |
Re: [url]http://www.lmgtfy.com/?q=applicative+order[/url] | |
Re: Surely any decent modern system would cater for the storage of URLs to forums containing already written answers ;) | |
Re: Your post is incomprehensible - maybe even encrypted. [url]http://www.catb.org/~esr/faqs/smart-questions.html#writewell[/url] | |
Re: b* means zero-or-more occurrences of b And since even "hello" has zero or more instances of b, then it gets matches. This is somewhat different to the pattern matching for filenames at the command prompt. If you want to match any b, then it's just 'b' For 'b' at the … | |
Re: > and in the same list, there is also the enemies This seems wrong to me. Space invaders always looked like a 2D array, with holes in it (eventually). You compare each bullet with every invader, and if they're in the same place at the same time, then that's a … |
The End.