-
Replied To a Post in Reading a 24 bit bmp image file
So, what goes wrong? The main problem I see is your outer loop. You need to increment qq by 3, not 1, and the limit should be `qq < (SCREEN_WIDTH … -
Replied To a Post in how to compare 2 data to find the same all informations
Homework assignment? -
Replied To a Post in How to start
Recursion is when a function/method calls itself. This is common for binary search, fibbonacci routines, etc. It is very basic computer science and has nothing to do with Java per … -
Replied To a Post in How to make an online database?
You can set up a database (MySQL, Oracle, Postgres, etc) in the Amazon cloud that your web site can access, and you can get to from anywhere. They all have … -
Replied To a Post in choosing a tower
Based upon your question, I assume you have a 5.25" disc you want to use? Any box with a 5.25" external bay will include slide to attach to your disc … -
Replied To a Post in Can a Dell Windows XP disk be used on an HP?
You probably can't boot from it on the HP since the CPU and BIOS IDs will have changed, and the HP uses different drivers than the Dell so XP won't … -
Replied To a Post in HDD REGENERATOR
What exactly do you mean by "hdd regenerator"? Something to fix or restore a disc image? -
Replied To a Post in Mouse freezes plays tune
You might try the open source AV tool ClamWin. Besides scanning files, it can also scan what is loaded into memory. -
Replied To a Post in image processing, pattern recognition,
If you know the images are identical to the original except for the markings (btw, you missed the horizontal line under the bird feeder in the second image), then a … -
Replied To a Post in Macros?
`assert()` is very useful (and commonly used) in debugging new code or unit testing code. You build it debuggable, run your tests, and if an assert (used for range/bounds checking, … -
Replied To a Post in Breadth first Search In C++
In your code here in main(): for(int i=0;i<n;i++) { g.addEdge(n1,n2); } Neither n1 nor n2 are initialized - they just contain garbage data from the stack. -
Replied To a Post in HDD REGENERATOR SOFTWARE
What do you mean by "hdd-regenerator" software? HDD - Hard Disc Drive? Regenerator - restore file system, disc image, what? -
Replied To a Post in samsung laptop model:3005Ec
What OS? Did you go to the samsumg website to look for drivers for your device/OS? -
Replied To a Post in balanced paranthesis
Please show example of what you are having problems with. -
Replied To a Post in Test Cases and expected results - Algorithm Verification
Sorry, but the terms of service for this site do not allow us to do your homework for you. Make an attempt to solve the problem, then post your code … -
Gave Reputation to vegaseat in Write a code snippet to declare and accept an integer and calculate the cub
A mild hint to help you along ... // FuncByRef2.c // pass function arguments by reference using pointers #include <stdio.h> void swap(int *x, int *y) { int temp = *x; … -
Replied To a Post in Flex
Flex is a lexical analyzer. I suppose you could use it to convert php to pdf, but why? It is a totally inappropriate tool for the job. Most programming editors … -
Gave Reputation to iConqueror in Hai this is PHP code .please convert to JAVA
Hi, Here you go: <?php $TooLazyToDoItMySelf = true; if($TooLazyToDoItMySelf) { echo "Show some effort then we will be happy to help"; } ?> -
Gave Reputation to iConqueror in Hai this is PHP code .please convert to JAVA
Hi, Here you go: <?php $TooLazyToDoItMySelf = true; if($TooLazyToDoItMySelf) { echo "Show some effort then we will be happy to help"; } ?> -
Replied To a Post in computer, or internet????
This is not a modem problem. It is a DNS problem. Take your modem back and get a refund. Verify that the TCP/IP settings are pointing at the Comcast DNS … -
Replied To a Post in Fix igdkm64.sys error windows 8.1
Have you updated the game to work with Win 8.1? It may need some new software/drivers/whatever to work properly. My best guess is that the igdkm64.sys is out-dated. -
Replied To a Post in Can't configure wifi AP with WPA
Some AP's provide an unsecured "guest" option, which is what I think is happening here. Make sure you are connecting to the secure ssid, and have used the correct passphrase … -
Replied To a Post in Laptop screen not working when lid opened
It sounds like the system isn't restarting the backlight when coming out of hibernation. Did you talk with the techs? I'm sure there is some connection that was either not … -
Replied To a Post in Compatibility between dlink and Asus
Do you mean repeater (for the WiFi access point), or bridge (use the router as a switch/bridge and not do routing)? -
Replied To a Post in Generic mp3 battery
Most of these that have no slip-off access covers, or screws to remove the back, can be pried apart, but will probably require one of those plastic prying tools that … -
Replied To a Post in external hdd not showing in my computer
How is the drive connected? USB I presume? Have you tried rebooting the computer with the drive attached. That will often fix this issue. If you initialize the drive, you … -
Replied To a Post in c++ get free number from query result
Show us the structure of the inventory table. Use the SQL command "describe inventory" to get that data. -
Replied To a Post in file copy I/O error
Is /media/garrett/DX50/update.img an application that runs on your computer to import/remove files from the device, or is it on the device to do same? Or do you just copy your … -
Replied To a Post in Cannot modify header information
Most coding problems with PHP is that people don't use it as it was intended. They try to mix PHP and HTML (which you can do). It is an object-oriented … -
Replied To a Post in search code in php
Study the PHP documentation: http://php.net/docs.php The reference docs are very useful. FWIW, use the mysqli classes and interfaces for MySQL access from PHP these days instead of the deprecated mysql … -
Replied To a Post in program problem
Well, I'm psychic and telepathic (in my dreams). The problem is he hasn't posted his code... :-) -
Gave Reputation to Lucaci Andrew in file handling!
Here's a headstart. Regex to find words starting with a lowercase vowel. #include <iostream> #include <regex> #include <string> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { regex reg("\\b[aeiou]\\S*"); string … -
Replied To a Post in Rewrite the code from C to C++
Modula maybe. It certainly isn't C. -
Replied To a Post in Black Dot on HP Monitor
It is failing. It isn't the display led's that are failing, but likely the underlying electronics such as capacitors or scan chips. Time to send it in for repair. FWIW, … -
Replied To a Post in What are the prerequisites for learning Linux and Unix
Buy or burn a liveDVD copy of Linux to disc, boot, and learn. Alternatively, install VirtualBox on your Windows system, and install Unix or Linux to a virtual machine, boot, … -
Replied To a Post in Having trouble on this program that i'm making...
And you are using Turbo-C because? It is old, outdated, non-standard, and definitely not complient with current standards. Stuff you write with Turbo-C won't work on anything but a Windows … -
Replied To a Post in DependencyInjection seem ugly and too much work, Am I doing something wrong
Excellent question! I'm going to need to do some thinking about this before I answer it better, though I'm not sure what this has to do with class factories. I … -
Replied To a Post in Installing gtkmm64 2.22 to work with Codeblocks 13.12
What operating system are you using? -
Replied To a Post in Good Algorithm Reference Book
Look up Knuth's "The Art of Computer Programming". Now 4 volumes (v.4 took a long time to come out - I just got it last year). Covers sorting/searching and many … -
Replied To a Post in Finding The Divisors of a Positive Integer Number
This is also the prime factorization problem - look it up. Every number is divisible by some number of primes. That's all the help you will get until you try … -
Replied To a Post in Undefined index warning in php+mysql
Forget this - need to re-analyze the original code. -
Replied To a Post in How IDE "learns" my C++ code?
Ain't software great? You can use older versions of a compiler to write/build a new version of the same. You can use software that analyzes other software to analyze itself. … -
Replied To a Post in Error after splash screen(Gateway CX210S)
Have you tried removing, blowing out dust with compressed air, and then reseating the memory sticks? It may just be a matter of dirt causing bad connections between the memory … -
Replied To a Post in Can new user inherit settings by other?
Some settings are universal and others are personal. When as root you set up some GUI configurations, many of those are "global", so you get them as a normal user. … -
Replied To a Post in clause not producing results
PHP has deprecated the mysql apis in favor of the mysqli classes and apis. Try that instead. FWIW, what version of PHP are you using? -
Replied To a Post in Releasing memory of a 2 dimentional pointer to arrays
This is when having a class to handle this cruft is called for. That way, you can deal with the new/delete cruft in the constructors/distructor and when you are done … -
Replied To a Post in Difference between JAVA and C++
1. Java is C++ with training wheels. 2. Java doesn't support multiple inheritance, other than via interface types, which in my opinion are really useless. Every concrete class that inherents … -
Replied To a Post in No output from UI thread
That is a problem if this is all of your code. Please be more complete... There is nothing regarding to opening the port, writing/reading data to/from it, etc. -
Replied To a Post in Mini projects
What AD says. There are an infinite number of projects that you can write in C or C++. Something that may be useful are tools that can monitor system performance … -
Replied To a Post in Gateway Laptop NE56R09h
I would complain to Gateway - if a system fails hard like this one month after warranty, I think they should still service it, if only to replace it with …
The End.