5,331 Posted Topics
Re: Consider classes as representations of "things", such as animals, boats, people, etc. Each class will consist of member variables that determine the uniqueness of that object, such as for people that may be name, address, age, etc. as well as methods to set/get the values of those variables such as … | |
Re: Contact Dell tech support. They can probably help you. They have a good internet chat tool so you don't have to wait on hold. | |
Re: In Linux you can use bvi - a binary VI editor. If the files are already in hex format (text really), then any editor will do. Notepad++ in Windows works well. | |
Re: So, you are saying your code is correct? Yet it dumps core. You are suffering from a severe case of near-sightedness. Step back a bit and look at your code again. | |
Re: And? You want us to do your homework for you? Make an effort if you want help here. We don't get your degree - you don't get our help unless you try to solve the problem first. | |
Re: Show how you are using getopt() in your code. Just talking about it isn't helpful without something tangible to work from. FWIW, the Linux getopt() man page has several pages of documentation and examples to help. Here is one of the examples: /* The following trivial example program uses getopt() … | |
Re: The Student function definition in line 31 is in conflict with the Student structure definition. Change the name of one or the other. Lines 43-46 don't compute, are missing a closing brace, and since they aren't part of a function definition and are outside of main(), this is a short … | |
Re: KISS - keep it short and simple. The sum() function should be simply this: int sum( int x, int y) { return x + y; } This results in this output: -1 -11 7 1 26 Unless your definition of "sum" and mine differ! :-) | |
Re: What topic is interesting to you? If you have no idea, change to another degree area - CS is not for you. CS has a huge number of subject areas that need investigation and work. Find something that is of interest to you. I have worked in development framework architecture, … | |
Re: Write the code. This is almost done. If you are still clueless, talk with your teacher or go back to the book... | |
Re: What's with the underscores? Is that a C11 thing? Ignoring the sytactical errors, the order of evaluation is compiler-specific. Until I see some valid (in my eye) code, I cannot answer your question. If what you meant was `x = ++i + ++i + ++i;` then anwser should be either … | |
Re: What tools are you using to generate your PHP? This doesn't happen "auto-magically". | |
Re: What version of Windows is this? It sounds like when the window is out of focus, it is put in a hold state. There may be some Win32 settings you can use to let it continue to run in such a situation, but I am not expert enough with Win32 … | |
Re: `stars[i][j+1] + stars[i+1][j]` - BOOM! The largest index in a size 20 array is 19. What happens when you access element 19+1 in either of these two sub-expressions? It is spelled "Buffer Overflow"... | |
Re: After pulling the battery, hold the power-on button down for at least 10-30 seconds in order to drain the CMOS-Flash memory charge. Just removing the battern is insufficient. Also, some systems actually require shorting out a couple of terminals on the motherboard. Some HP systems require that to discharge the … | |
Re: Well, I don't see where you are declaring the inputChar variable. Please show the entire class. | |
Re: No code. No help. We don't do your homework for you! | |
Re: First, this really isn't pseudocode. Pseudocode will describe the problem and solution in regular terms. It should be understandable by someone who is intelligent but not computer literate. | |
Re: This camera uses a separate lens system to feed the display screen since it is not an SLR, just "SLR-like". IE, it looks like an SLR, but it isn't. So, something is snafu with the viewfinder. You may need to send it in for repair. | |
Re: If the microphone is on, it may simply be feedback. Make sure the mic is disabled or muted and see if that helps. My system does that in such cases. | |
Re: Your while loop on line 10 is incorrect. It should be `while (a>=5)` instead of `while <a=>5>;` Also, you have an extraneous `{` at the end of your code. | |
Re: The other option is Firefox (Mozilla). Myself, I primarily use Chrome, but I also use Firefox on some systems that Chrome doesn't support. | |
Re: Walk through the directory structure, looking for files that match the name you input, or that contain data that matches. You can use the grep command (Unix/Linux) to do that. In fact, Linux and Unix have a very neat command line tool called "find" that can handle that very well. … | |
Re: Perhaps it has data in a format that Windows cannot read? | |
Re: What version of PHP are you running? Also, you aren't showing much relevant code. | |
Re: Usually these would be written to the file system as CSV (comma separated value) files that Excel can handle very well. I used to do that with PHP to generate cell phone performance data for Nokia's quality assurance department. | |
Re: Well, this makes no sense. Want to elaborate a bit? :rolleyes: | |
Re: If this is a new laptop, take it in for warranty repair. If out of warranty, it is likely that the backlight for the LCD display is bad, or the electronics for that are bad. Again, you need to take it in to a repair depot. | |
Re: What OS are you running? 32-bit or 64-bit? What version of Chrome? How much memory does your system have? Have you enabled swap memory? | |
Re: My last 2 work laptops have been Lenovos. Before that strictly Dell - I still use my 9 year old Dell Lattitude D630 - still fast - has dual core 3+GHz 64-bit processor, 4GB ram, 360GB disc, Wifi, bluetooth, HD display. My current laptop is a Lenovo Carbon x1 - … | |
Re: There is also a switch on the left size near the front of the computer that controls the WiFi and bluetooth. Is that in the "on" position? Also, as CimmerianX indicates, you can also enable/disable it via system settings. Also, it is an option. It is not installed unless you … | |
Re: Your code as shown is not correct/valid and you aren't showing enough information, such as your class definitions. Are you trying to define a class inside another one? | |
Re: Volatile allows a global or shared variable to be read and written attomically. Example: `int newvalue = vvar++;` which would set newvalue to the volatile variable (vvar) and then increment vvar. This may be a viable approach if the threads share no other data that needs to be protected from … | |
Re: Basically, it is a binary sort that on average requires O(n log n) comparisons to sort, though it is often more efficient that that. Here is the Wikipedia article that does a decent job of explaining the details: https://en.wikipedia.org/wiki/Quicksort If you are inserting items into a sorted array, then you … | |
Re: If you have a licensed installation disc, you can easily create an iso from that. If not, then you need to get one. | |
Re: I don't have an ideapad but I do have a Carbon x1 - the right shift key is directly under the Enter key. | |
Re: You can use ffmpeg to reduce the size or change the video format easily. | |
Re: If it is in bridge mode, then as long as it is connected to another router, it doesn't need to "understand" DHCP and DNS stuff. Make sure the Lynksys bridge and your router don't use the same admin address, such as 192.168.1.1, otherwise things won't work. | |
![]() | Re: 1. You don't save the tokens extracted. 2. I don't see where you identify what database columns each item is associated with. 3. I see no associated database, connections to it, etc. You have more work to do before we can help you. Or at least before I can help … |
Re: If it is locked, and you don't have the unlock code, then it isn't your phone... Sorry, no help here! | |
Re: So, did you write this code, or are you trying to adapt someone else's code? | |
Re: Please use real C code here. We need to see exactly what you are trying to do. | |
Re: Check that the vents are clear. Get some compressed air and blow the system out to help clean it - taking the cover and keyboard off is good so you can blow the motherboard clean. If it is still dead, then you will need to send it in for repair. | |
Re: They all work well, but you want to get the most current version you can, at least 4.4.2 or 5.x. | |
Re: The CPU is only part of the equation to build a good gaming system. This CPU is a good one, but the motherboard, memory, cache, I/O speed and bandwidth, video processor(s), power supply, disc drive (SSD vs. HDD), and many other things factor into the overall success of the system. | |
Re: Please move this to the Software Development forum. | |
Re: Just listing the components isn't helpful. When you turn it on, does ANYTHING work, such as fans and such? Have you verified that you plugged the power supply into the correct headers/plugs? If it doesn't even turn on the power supply fan, have you checked if the power supply circuit … | |
Re: So doris, to you remember what the equation is to compute the area of a circle? You want us to do your homework for you? Give us a break! It is tiring to keep getting requests to solve simple homework assignments. READ THE FARKING BOOK! Sorry, but it has been … | |
Re: Sorry. We don't do your work (real or homework) for you! There are commercial packages that will do this that you can buy. There may be open source packages that you can adapt to this purpose. Just DO NOT ask us to solve your life problems if you are not … |
The End.