A pointer points to something in memory. If you haven't done assembly language programming that probably won't make a lot of sense at this stage...
xpi0t0s has reported a post. Reason:Spam/advert Post: data store Forum: Advance C# Assigned Moderators: N/A Posted by: lwb3011d
No trick as such, just don't assume that eof means processing is complete. In other words, don't use eof as the loop condition unless you're...
You can include the relative path name of the file in the shared object as part of the object data. Just declare it at the top of one of your...
The built-in types don't have any kind of runtime type information (RTTI). You can define your own datatypes using struct, e.g. struct myType{int...
Depends what you're interested in. Checking through my own projects I have a chess solver, a 6502 processor emulator, a polynomial "math" package...
How did the test go?
See http://msdn.microsoft.com/en-us/library/aa929823.aspx Setting itemData in lParam is pointless because this is ignored. LB_GETITEMDATA returns...
String parsing is quite a large subject and depends mainly on what the data is and what you want to do with it. Can you give an example of some...
xpi0t0s has reported a post. Reason:bsoaieda only seems to want to "bump threads", whatever that means, without any explanation, and to market...
There's not much you need by way of an algorithm, pretty much just open the file, loop through it until you find the record you want then do...
Petzold all the way for learning Windows programming. Can't be beat.
Here you go. I don't know anything about NFAs and DFAs or how to convert between them, but if you know then just fill in the details and this...
String functions REQUIRE a NULL terminator, and they REQUIRE the null terminator to be at the end. So strlen(motd) won't work because there's no...
We're not going to write it for you. Post what you have so far, explain what you don't understand and/or what isn't working, and we'll help you...
It's stored in the program static data area, sometimes known as BSS. This is static data that you MUST NOT modify (all being well you will be...
I imagine most would. Chapter 10 of O'Reilly CSharp in a Nutshell (2e), Chapter 9 of Microsoft C# programming for the absolute beginner and...
It's not difficult. How far have you got, and what are you stuck on? Obviously we're not going to write your project for you, but we will give...
How have you created the hash table? Is it a file that contains the data, or an array of structures within the program?
Simplified testcase: void linestream() { istringstream line_stream("The quick brown fox jumps over the lazy dog"); string word;...
Separate names with a comma.