5,331 Posted Topics

Member Avatar for msajid.sarwar.7_1

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 …

Member Avatar for vieru.dorincristian
0
90
Member Avatar for raykevinnn

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.

Member Avatar for Rik_
0
149
Member Avatar for Ghost0s

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.

Member Avatar for Ghost0s
0
121
Member Avatar for uws101

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.

Member Avatar for rubberman
0
141
Member Avatar for mohmedd

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.

Member Avatar for rubberman
-2
178
Member Avatar for choconom

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() …

Member Avatar for rubberman
0
179
Member Avatar for TObannion

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 …

Member Avatar for rubberman
0
362
Member Avatar for andrew mendonca

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! :-)

Member Avatar for rubberman
0
143
Member Avatar for hurry.barket

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, …

Member Avatar for rubberman
0
215
Member Avatar for Affifa

Write the code. This is almost done. If you are still clueless, talk with your teacher or go back to the book...

Member Avatar for rubberman
0
30
Member Avatar for Ashish_16

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 …

Member Avatar for rubberman
0
105
Member Avatar for OsaMasw
Member Avatar for Zvz
0
219
Member Avatar for cambalinho

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 …

Member Avatar for cambalinho
0
292
Member Avatar for TObannion

`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"...

Member Avatar for TObannion
0
193
Member Avatar for Farrukh saleem

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 …

Member Avatar for RobertHDD
0
161
Member Avatar for divinity02

Well, I don't see where you are declaring the inputChar variable. Please show the entire class.

Member Avatar for JamesCherrill
0
257
Member Avatar for Ash77
Member Avatar for omegaprime

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.

Member Avatar for rubberman
-1
1K
Member Avatar for Sintu Y Uyassi

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.

Member Avatar for rubberman
0
105
Member Avatar for Frostty

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.

Member Avatar for rubberman
0
159
Member Avatar for tentrabyte

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.

Member Avatar for dbfud1988
0
656
Member Avatar for Tcll

The other option is Firefox (Mozilla). Myself, I primarily use Chrome, but I also use Firefox on some systems that Chrome doesn't support.

Member Avatar for Tcll
0
1K
Member Avatar for Ghost0s

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. …

Member Avatar for riyathomas306
0
186
Member Avatar for RikTelner
Member Avatar for sergio_pb

What version of PHP are you running? Also, you aren't showing much relevant code.

Member Avatar for sergio_pb
0
589
Member Avatar for harishprakash

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.

Member Avatar for harishprakash
0
145
Member Avatar for admins
Member Avatar for rubberman
0
30
Member Avatar for Sintu Y Uyassi

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.

Member Avatar for rubberman
0
63
Member Avatar for Joycekyle

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?

Member Avatar for rubberman
0
77
Member Avatar for Kewne

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 - …

Member Avatar for rubberman
0
204
Member Avatar for faisal_6

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 …

Member Avatar for rubberman
0
75
Member Avatar for divinity02

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?

Member Avatar for divinity02
0
300
Member Avatar for myk45

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 …

Member Avatar for myk45
0
1K
Member Avatar for sciprog22

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 …

Member Avatar for sciprog22
0
231
Member Avatar for knives67

If you have a licensed installation disc, you can easily create an iso from that. If not, then you need to get one.

Member Avatar for knives67
0
199
Member Avatar for brenda.cook.54

I don't have an ideapad but I do have a Carbon x1 - the right shift key is directly under the Enter key.

Member Avatar for rubberman
0
85
Member Avatar for Elvi
Member Avatar for rubberman
0
169
Member Avatar for ruba_1

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.

Member Avatar for CimmerianX
0
159
Member Avatar for amogh.max

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 …

Member Avatar for JamesCherrill
0
298
Member Avatar for Sintu Y Uyassi

If it is locked, and you don't have the unlock code, then it isn't your phone... Sorry, no help here!

Member Avatar for happygeek
0
140
Member Avatar for Sam_13

So, did you write this code, or are you trying to adapt someone else's code?

Member Avatar for stultuske
0
199
Member Avatar for uws101
Member Avatar for uws101
0
133
Member Avatar for Sintu Y Uyassi

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.

Member Avatar for gerbil
0
403
Member Avatar for frankline

They all work well, but you want to get the most current version you can, at least 4.4.2 or 5.x.

Member Avatar for rubberman
0
108
Member Avatar for hakim179

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.

Member Avatar for rubberman
0
94
Member Avatar for RobertDecousta

The apple. A fruit that grows on deciduous trees, commonly associated with the Devil getting Adam and Eve thrown out of the Garden of Eden.

Member Avatar for rubberman
0
165
Member Avatar for Xiao_1
Member Avatar for Harrison_2

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 …

Member Avatar for Sintu Y Uyassi
0
415
Member Avatar for doris_3
Re: C

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 …

Member Avatar for rubberman
-1
134
Member Avatar for ikujeyisie

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 …

Member Avatar for rubberman
-4
72

The End.