958 Posted Topics
Re: Buttered Cheese Excrement Nocturnal Copulation Broken Shit Waves Zombie Ant Zombie Roach Roach Clip Smoking Coach Load and Kill Because Higgins Growing Green Screaming Foliage Somedudeovertherecertainlynothere 1-methyl-4-phenyl-1,2,5,6-tetrahydropyridine et al. | |
Re: [QUOTE=siddhant3s;910712]Until and unless you have a [I][B]VERY GOOD REASON[/B][/I] to use stdio, I don't prefer to use it.[/QUOTE] Debugging, since it usually prints right when you tell it too, while your regular debugger is flipping out. | |
Re: What happens if you flip it the bird, do you get suspended? I hate when people try to act happy. I get cautious and twitchy around them, and when I get cautious and twitchy: things can get very ugly. | |
Re: Wow, Iraqis are so crafty turning armored tractors with pesticide turrets into tanks. lol [url]http://www.youtube.com/watch?v=kqBOMBSDQsI[/url] | |
Re: Download Code::Blocks, and keep these sites bookmarked: [url]http://www.cprogramming.com/tutorial.html#ctutorial[/url] [url]http://www.cplusplus.com/reference/clibrary/[/url] [url]http://www.cppreference.com/wiki/[/url] [url]http://www.opengroup.org/onlinepubs/009695399/[/url] And just use Google. | |
Re: You should add another parentheses [icode](5/9)*(°-32)[/icode]. Why are you 'fixing' and using setprecisioin() if you're using integers? Why not use float or double instead of int? edit: nvm AD already posted it while I was sidetracking. | |
Re: [url]http://www.cplusplus.com/doc/tutorial/dynamic/[/url] [code=cpp]type *var = new type[size]; if(!var) return(false); /*or somesort of error handling*/ delete [] var;[/code] | |
Re: In there, what's so great? Impossible to break any of those lurking records... :( | |
| |
Re: Why are all these "topic ideal" threads popping up now?! They use to isolated over in the CS section, now they're infiltrating the lounges. | |
Re: I assume you know how to do basic file i/o? [url]http://www.cplusplus.com/reference/iostream/ofstream/[/url] [url]http://www.cplusplus.com/reference/iostream/ifstream/[/url] Write/read how many objects you have, then loop through and load/store those objects. | |
Since you geeks seem to love PB. Brand? Creamy or Crunchy? Self-stir or zero-effort? I prefer the Maranatha Crunchy, despite the small effort of stirring it before you eat. | |
Re: [QUOTE=M3gedhom;905805]then how can u make it sort within a txt file?[/QUOTE] You load it up first. | |
Re: With sstream-hex you have to add the zero. Something like: [code=cpp]vector<string> test; //or array, doesn't matter ... if(test[i].size() < 2) test[i].insert(0, "0");[/code] | |
Re: Get a pointer/array then start writing outside bounds. Get to it. | |
Re: Do you own your own espresso machine yet, smoke a carton a day, chew a bushel of khat and areca? If you answered no to any of the above, then you're doing it wrong! | |
Re: [QUOTE=Nichito;410808]lets say you have the opportunity to choose between two women (men if you're a chick): ... which one would you choose?[/QUOTE] Why would I have to choose? What's the scenario? | |
Re: When you set a pointer and don't always use every "point" in it(especially while dealing with user input), you need memset() to set a default value. | |
Re: Have everything compressed before hand. And what's your code, show us you're not doing something idiotic. | |
Re: Code::Blocks with MinGW is my choice. [QUOTE=serkan sendur;902583]what is your reason for win32 programming, why dont you program in .net?[/QUOTE] .NET is like asking someone to commit suicide. It's a bloated piece of crap. | |
Re: Reallocate pointer1 to size of itself plus pointer2, then memmove() p2 to the end of p1. | |
Re: [url]http://www.cplusplus.com/doc/tutorial/dynamic/[/url] | |
Re: You know all of you are getting work-up over nothing, right? If you're this easy to instigate, give me you're phone numbers so I can use you in my next angry mindless mob. | |
Re: Since your using Windows: [url]http://msdn.microsoft.com/en-us/library/ms646268(VS.85).aspx[/url] | |
Re: Tutorial: [url]http://www.youtube.com/watch?v=9x9o3_CG3fQ[/url] Piezo element: [url]http://www.mouser.com/Search/Refine.aspx?N=1525667&Keyword=piezo&Ns=Pricing|0&FS=True[/url] Cheap potentiometers(they can get expensive): [url]http://www.mouser.com/Search/Refine.aspx?N=254352&Keyword=slide&Ns=Pricing|0&FS=True[/url] Filter: [url]http://en.wikipedia.org/wiki/High-pass_filter[/url] Fancy six band: [url]http://www.generalguitargadgets.com/pdf/ggg_eq6b_sc.pdf[/url] Amp schemes: [url]http://en.wikipedia.org/wiki/Electronic_amplifier#Class_A[/url] Ta-da... Hardly a buck(w/o S&H). | |
Re: Once you can understand all of these: [url]http://www.ioccc.org/years.html[/url] | |
Re: So you're in the twelfth-grade and in CS and don't know how to ask a question properly? | |
Re: Yeah I saw allot of those History channel on some episodes, and it's rather hilarious. But they put chloroform in medicine?! 0.0 Why don't they just stab someone in the liver and get it over with. | |
Re: You only need a bracket {} after an if-statement if there is more than one afterward procedures(';'). gotos make code hard to read, they're often not optimizable by the compilers, and being hard to read with a glance: lead to broken code. edit: Once again, AD posted just enough seconds … | |
Re: [code]void func(const char *); ... if(option1) func("option1"); else if(option2) func("option2"); else cout << "Not an option.";[/code] Nvm, AD answered it. | |
Re: conio.h isn't used, and should never be. Macros used like that are dangerous. It's: [icode]int main() { return(0); }[/icode] | |
Re: [QUOTE=protjaart;871554]hi i am also a newbie to programing and game programing in fact still a student and need to know a lot and one of my questions was what language is best suitable for 3d game development? and what language is best suitable for windows application development? those are my … | |
Re: Programing's programing. Unless you're doing system specific stuff. | |
Re: Entropy is just the measure of change/randomness in a system. And I suppose he's trying to check the correctness of the bits in a system. Maybe? idk | |
Re: Circuit logic gates are the same things you'd find in programming and other related subjects. [url]http://en.wikipedia.org/wiki/Boolean_algebra_topics[/url] [url]http://en.wikipedia.org/wiki/Logic_gates[/url] A K'nex version: [url]http://www.youtube.com/watch?v=3vXlQZvS-nM[/url] | |
Re: [URL="http://en.wikipedia.org/wiki/Ohm"]ohhhmmmmmm *ting* ohhhhmmmmmm *ting* ohhhmmmmmm *ting*[/URL] | |
Re: No. Care must be take in finding a quality "random" generator. There was a case where a gambler found that the generator, of some video machine, was seeded by the current time, and the machines were turned on at the same time everyday. So he found the sequence and got … | |
Re: I have programmed by opcodes. In hexadecimal representation not binary. Slow, but if you ever plan on writing assemblers and compilers for stuff like micrcontrollers. It's nice to know. Unless your computers input is made of toggle switches, and your computer is a fridge sized machine made of resistors and … | |
Re: [QUOTE=Narue;888862][B]>A byte is just always eight bits[/B] Incorrect. "Byte" is an abstract term for the smallest addressable unit for your system. While more and more systems are gravitating toward the octet (eight bits, for the terminology-challenged) for a byte, it's by no means universal.[/QUOTE] Other than hobbyist and maintenance projects, … | |
Re: I don't drink soda, no option for that. Also doesn't say what sort of tea. Doesn't even have other things listed such as chocolate with caffeine. And tolerance is common with caffeine, so no accounting for that. | |
Re: [QUOTE=Salem;877815] Now that's a LOT of code to maintain, and an ever diminishing pool of people to work on it because they're all starting to retire about now.[/QUOTE] Or because they're doing the obvious to themselves. I tried to read some COBOL samples, and listening to AM radio static is … | |
Re: [QUOTE=vegaseat;880315]Ignorance is bliss Apathy is a mental illness[/QUOTE] Can I have my pills then, please? | |
Re: [QUOTE=Baldy76;884807]Until a scientist proves that life can be derived from sterile [insert element(s) here], a higher power is the only explanation. Of course after the jump start of life, evolution would have had to take over.[/QUOTE] But what would this "higher power" be made of and how did it come … | |
Re: 9:22, Personal note: When I was a little kid my mother told me not to stare into the sun, so once when I was six, I did. At first the brightness was overwhelming, but I had seen that before. I kept looking, forcing myself not to blink, and then the … | |
Re: Get a boot disk and something to read the hard-drive contents. Boot up and read the first 512 bytes, save it, post it. | |
Re: ^-- *points to my avatar* Been watching to much of that show? Programming would just be a layer of control over other devices. It's just another tool in the process there - like a screwdriver. Isn't the internet close enough of a time machine for you? | |
Re: [url]http://www.amazon.com/Mathematics-Physics-Programmers-Game-Development/dp/1584503300[/url] This was a pretty good book on the subject. Goes over all the crap they teach you in high-school, in the first few chapters, then actual application. Might hold you over till you get some formal classes(seeing how you don't remember absolute). |
The End.