- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 11
- Posts with Upvotes
- 9
- Upvoting Members
- 10
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 2
Re: [B]Skepticisms[/B] is the longest word that alternates hands when typing! | |
Re: The C++ Programming Language - bjarne stroustrup C++ Primer Thinking in C++ Effective c++ The design and evolution of c++ Programming Language | |
Re: Method1 (The XOR trick) a ^= b ^= a ^= b; Although the code above works fine for most of the cases, it tries to modify variable 'a' two times between sequence points, so the behavior is undefined. What this means is it wont work in all the cases. This … | |
Re: I agree with all above.Try a better/newer IDE .Avoid using Turbo C, it is considered to be non-standard. There are many things in it which are outdated and not according to ANSI standard. | |
Re: It is not the size of a dog in a fight... It is the size of the fight in a dog. | |
Re: Not sure if Earthbound is better than Supermario. **Commitment** | |
Re: Adding to what all have said.. Just to know distribuitons of Linux OS only , checkout distrowatch.com . You will get an idea that you have asked something like how many birds in my city right now..?? :) :) | |
Re: [QUOTE]System multiplication table[/QUOTE] Please be a little more specific what exactly you want | |
Re: Since you want to read from a file , your inital step would be to read about java IO. Check out various classes Reader, Writer, BufferedReader etc. That will give you a pretty clear idea about how to start. For ex. BufferedReader has a method readLine() that reads an entire … | |
Re: Try printing "type" at line number 6 , that might give you some clue. Also, paste on your entire code so that we get a better idea | |
Re: Please specify the problem that you are facing..?? what exactly do you want? | |
I don't need the exact query , just the logic of how I should go about it: I need to compare for equality all records of a table for a given set of fields. If count of such similar records exceeds a particular value, I have to delete all those … | |
Re: Not one of my favo.. but the hacker guy in Italian Job does nice little traffic signal hacking.. :P :D | |
Re: From this code, you are passing the file as an argument i.e. at the time when you run the program. Probably a little study of 'String args[]' or what command line arguments are will help you :) | |
Re: Search on www.coursera.org or www.udacity.com and see if you get any | |
Re: Well I would suggest you to try http://opencv.org/ I guess willowgarage is an older link. And from what you have written ,seems that its an installation problem | |
Re: Since the error message that you are getting is quite clear, I would suggest you to try the same query on your db console and when it runs there, write the query in your code. Many a times, such things may happen due to case sensitiveness etc. | |
If I want to learn web designing and development, that includes many technologies HTML5, CSS, PHP, JavaScript, AJAX, XML, DOM, Flash/Flex/ActionScript and so on. In which order should I go? The start will be basic HTML no doubt , but then which ones are the pre requisites for what. What … | |
Re: Do you get an exception...?? Try finding out whether conn is null. This will confirm whether connection is being established or not in the first place. | |
Re: For which line in your code are you getting null pointer exception?? FYI you get null pointer exception whenever you try to access/use something whose value is null | |
Re: **GNU assembler (gas)** , also called **as** is another such assembler. You get it as a part of binutils as well | |
Re: > U2 (two's complement) 2 's complement means inverting each bit (i.e. 0 becomes 1 and 1 becomes 0). And then add 1 to whatever number you get .That will give you 2's complement of that number | |
Re: Basically , you have messed up with you curly braces a lot. Check into them. > D = S*(S-a)*(S-b)*(S-c); //D is the square of the area of the triangle > if(D<=0) > { > printf("The triangle cannot be formed"); > getch(); > exit(0); > if((a==b || b==c || c==a) && … | |
Re: Computer Security, taught by Dan Boneh, John Mitchell and Dawn Song [url]http://www.security-class.org/[/url] Cryptography, taught by Professor Dan Boneh [url]http://crypto-class.org/[/url] Software Engineering for Software as a Service (SAAS), taught by Armando Fox and David Patterson [url]http://saas-class.org/[/url] Game Theory, taught by Matthew O. Jackson and Yoav Shoham [url]http://game-theory-class.org[/url] Natural Language processing, taught … | |
Re: I agree with happygeek in this case. Yes, its true most of the companies will consider your looks while recruiting you. But personally, I believe that looks really don't matter. May be people will have misconceptions about you at the beginning, but if you have true talent, it will be … | |
Re: [QUOTE]package junit.framework does not exist[/QUOTE] Thats where your problem lies. This previous thread might help [url]http://www.daniweb.com/software-development/java/threads/355349[/url] | |
Re: Here is a link that might get all your concepts pretty much clear [url]http://www.dedoimedo.com/computers/dual-boot-windows-7-ubuntu.html[/url] | |
Re: [QUOTE]It says case label does not reduce to an integer [/QUOTE] Maybe printing isalpha('a') might help. Just because isalpha on true returns non-zero integer , not necessarily 1. So can be a problem. Just try that out |