3,892 Posted Topics
Re: Hey there buddy, welcome to Daniweb....:D Maybe you should post your question in the correct forum...like the Microsoft Windows > Software forum. | |
Re: It would be better buddy if you posted your question in the Site Management category of forums to get a quicker response. | |
| |
Re: Jobe, my very first reaction would be, why not write a generic function instead of restricting yourself with search strings of length 2 or 3. [quote]goes out of bound. Isn't that bad coding?[/quote] Its not bad coding, its [I]wrong [/I]coding. How can you expect your program to perform properly and … | |
![]() | Re: That is because [I]time( ) [/I]is a function in standard C++ found in the [I]ctime [/I]header file. You can't name program variables with the names of standard functions. If you will observe closely, that is also what those errors say out. |
Re: You can try out free IDE's like Code:Blocks and Dev C++ which work well on *nix systems. BTW for your Eclipse thing maybe [URL="http://linuxdevices.com/articles/AT8349506804.html"]this[/URL] will help you out [URL="http://linuxdevices.com/articles/AT8349506804.html"][/URL]. | |
Re: If you already know Java, why not just use it ? No point in wasting your time learning a new language, better utilize that time to do some brainstorming about your project and making it a better application. Java has gone out to show that it can be used for … | |
Re: Some talk related to such things [URL="http://www.procata.com/blog/archives/2006/04/06/php-games/"]here[/URL]. And a place where you would feel at home in PHPgame development, is[URL="http://php.resourceindex.com/Complete_Scripts/Games/"] this.[/URL] | |
Re: Post your entire code, only then can we pinpoint errors. | |
Re: [quote=sdillinger;290022]Dragon- I will include my full code below, I had edited out a few things for brevity. Why do you not construct the Opra_record here: Opra_record* rec; // = new Opra_record; [/quote] Your friend function expects a reference to an instance of Opra record, it doesn't matter whether that Opra … | |
Re: I don't think such a thing would be implemented..and what have they got to say about Youtube and other video sharing sites which [I]allow the user to register[/I], access the site and download all the illegal or ripped vidoes upped by others (not to mention the porn galore there). With … | |
Re: I sometimes wonder where you come up with all the links form (flash games, cool sites...) ;) | |
Re: Hey there buddy, welcome to Daniweb..:D And as far as your query is concerned, head over to the MySQL and PHP section for help.. | |
Re: Hey there buddy welcome to Daniweb. And yes its a good thing not to pretend things you know since it just ends up slowing the learning process. | |
Re: Here is the [URL="http://www-ccs.ucsd.edu/c/time.html"]reference site[/URL]. Here is a small example: [code=cplusplus] #include <iostream> #include <ctime> using namespace std ; int main( ) { char buffer[BUFSIZ] = { '\0' } ; time_t now = time( &now ) ; struct tm* local_time = new tm( ) ; local_time = localtime( &now ) … | |
Re: Hey there buddy, welcome to Daniweb....:D And please post your question in appropriate forum to get quick response. | |
Re: Hello there and welcome to Daniweb. Post your question in the Hardware > Storage section to get quick help. | |
Re: Hey there buddy, welcome. Hope you get [I]maximum [/I]knowledge of VB here..;) | |
Re: Yep head over to the IRC channel of Daniweb and chat all you want.. And btw welcome to Daniweb. ;) | |
| |
Re: But still we can surely aim for a "game development" message board, can't we guys....;) | |
Re: There are two ways you can achieve the feat: either call the function itself inside the [I]if statement [/I]or store the bool returned by the function in a bool variable and check that variable in the [I]if statement. [/I] Eg. [code=c] bool is_prime = isPrime( number ) ; if( is_prime … | |
Re: First of all welcome to Daniweb :D Some points to be noted: 1. Don't bother [I]creating [/I]your own 3d engine, most people make a wrong decision here and never reach the other side. Even the biggest of professionals use commercial 3d engines for making games, then why not you ? … | |
Re: Welcome to Daniweb buddy and don't be afraid to ask questions here. Feel free to query someone and you definately would get the answer. | |
Re: [quote=lavicool;287725]When I try to complie and run, it says it cannot open the "sper.dat" file. [/quote] No such error for me, the program seems to have found the file, only to crash for the cause of segmentation error. Are you really including your sales.h file in your sales.c file and … | |
Re: [quote=joeprogrammer;288841]Another thing: in your paths, you're supposed to use double \\s to indicate that it's not an escape charecter! That could be the problem right there.[/quote] You can do the same thing with a single forward slash (/), its more portable. | |
Re: [quote=may4life;288156]These people are simply boycotting me for their own reasons.[/quote] Hold it buddy, everyone makes mistakes, and the same must have happened by looking at your code. | |
Re: Heh..given up so easily.. Come on girly, after communicating with you through posts, I thought you were one of those people who don't give up even if the whole world is against them, as long as they are right. If you think what you say is right, there is no … | |
Re: [quote=cscgal;281579]My concerns ... Which forum would someone coding a game in C++ post? Is it wise to create a development forum that is a mixture of all programming languages? [/quote] Game development isn't just about code in C and C++, it involves a lot of issues -- Artificial Intelligence Algorithms … | |
Re: Hmm...when you say you are having problem what does it actually mean ? Some more things, if your program wants to calculate the average, where is the array which holds the values or are you accepting input from a file ? In your get_data( ) function you have : final … | |
Re: Bleh..323.5 after 10 tries. [IMG]http://img154.imageshack.us/img154/9607/untitlednb7.jpg[/IMG] Yay...:D | |
Re: [quote=Lerner;287813]The ability to answer this question on your own is part of the process called debugging. It's a skill you're going to need to prosper in this endeavor so you might as well learn how to do it early.[/quote] The code won't even compile so how does the question of … | |
Re: [quote=Fooksan;287902] 1) Whats the easiest (Free) programing language to create this?[/quote] I would have said VB.NET but since its a proprietary language(you have to pay for getting it ) my next best bet is [B]C#[/B] if you want to make it windows only or [B]Python[/B] if you want to make … | |
Re: My favourite genre: Fiction Tech Related Spiritual For fiction I prefer P.G. Wodehouse (comedy), Agatha Christie (murder mystery) and Perry Mason ( courtroom murder mystery) For tech related, it can be any gaming magazine, normal PC magazines, articles on the internet and what not !! | |
Re: [quote=Ancient Dragon;286806]what gave you the idea that arrays can not be reallocated? new, malloc, or realloc() can be used to do that. [/quote] Hello. Actual arrays can't be resized, what you are talking about is data pointers being allocated enough memory to be used as arrays. The important differentiation here … | |
Re: Hey there Steve, welcome to Daniweb. Looks like even you are a metal fan like me :D | |
![]() | Re: Too many things to say: 1. Don't use [INLINECODE]void main( )[/INLINECODE], its not standard, use[INLINECODE] int main( )[/INLINECODE] instead. 2. If you are using C++ why keep old C style headers. [code=c] // instead of #include <string.h> // use #include <string> using namespace std ; [/code] The same goes for … |
Re: Japanese cartoons, you name it. Some of the good ones which I have seen:[LIST] [*]Get Backers [*]FLCL (godly concept) [*]Naruto [*]Ouran High School host club [*]Black Lagoon [*]Air Gear [*]Death Note [*]D Gray Man [*]Black Blood Brothers [*]Zero no Tsukaima [*]and many many more....[/LIST]And btw I don't believe cartoons are … | |
Re: Since I dont know with which option you would be more happy, i ticked each of them. Maybe should liven up the poll and bit. But if it were a poll with option buttons( and not checkboxes ), I would have definately supported you Mr. DMR since I dont think … | |
Re: Doesnt [URL="http://www.daniweb.com/techtalkforums/post282895-28.html"]this post[/URL] solve your problem ? . | |
Re: But still bold is better than red color.... Yep, our sharky used to post in red and different colors when he had first joined, it took me some time to explain why they should not be used.. Looks like nowadays he has developed an infatuation for bold...;) | |
Re: Just wanted to tell you that sometimes your description is rather vague. Always post a question in such way that the person reading it doesn't have to use a compiler to test it out what is going wrong. If your program displays something and takes some kind of user input, … | |
![]() | Re: I never cheated because cheating here is a give and take procedure and I had nothing to give except blank stares...duh.. The way I start off: [QUOTE] 1. Pick up the book (of couse this is important). 2. Read about the author and his achievements and of course the abstract … |
The End.