Announcement
Collapse
No announcement yet.
Search Result
Collapse
500 results in 3.3067 seconds.
Keywords
Members
Tags
-
Cell phone chargers are just hardware, there is no software. The software running in the phone is what manages charging.
-
That's because stdout buffers output by default. If you want every character to output as soon as you write it out then you need to flush the buffer or define stdout not to buffer.
See
setbuf - C++ Reference
fflush - C++ Reference
Leave a comment:
-
Well typically you have 2 different kinds of loop contstructs, a sentinel controlled loop and a count controlled loop.
A sentinel controlled loop performs a task infinitely until a condition has been met. A count controlled loop performs a task a defined number of times. Which you use...
Leave a comment:
-
A Linked List is generally made up of nodes. What that function is expecting is a pointer to 3 of these LinkedList structures. The "source" would obviously be the one that will be split with "front" and "back" being what it will give back to you as 2 new linked lists...
Leave a comment:
-
-
How are they submitting the information? Through a website form? If so store it in a database rather than send straight to email. Can easily write something to export from a database to a spreadsheet or even provide a web based interface to display the information from the database.
Leave a comment:
-
Or you could write it and if you run into problems come ask questions.
Leave a comment:
-
I presume you are using Visual Studio? You likely selected the wrong project type. It should probably have been set to a Console application.
Leave a comment:
-
If you want to build a house do you just need to learn how to use a hammer and saws? No. You need to learn how to design and build the house before the tools will do you any good. The tools are no good if you don't know what the house should look like when it's finished or how to put a house together....
Leave a comment:
-
So you are spending tons of money to get a computer science degree just so you can write some HTML and Javascript for the front end of websites? Wow. I have no more advice that would benefit you.
Leave a comment:
-
If you are in your 3rd year and have done little programming I would be worried. For my bachelors in CS year 1, semester 1 started with programming 101 and there was at least one course every semester for all 4 years that required or involved programming in some way shape or form. While you shouldn't...
Leave a comment:
-
Sorry not a .net or C# fan. I prefer C++ with Qt for user interface based apps.
Leave a comment:
-
A while loop is appropriate in this case. Just loop reading in a line at a time until you reach EOF....
Leave a comment:
-
If you have segfaulted you likely ran off the end of your array or didn't allocate memory for it before you tried to add items to it....
Leave a comment:
Leave a comment: