Assuming your class is using char * (you didn't want to use the string class) than each letter in the string can be pointed to rather easily
assuming: char myStr[7] = "my name";
try connecting to the time server with windows just to make sure everything is all right "net time \\computername /QUERYSNTP"
If this works you could always shell that and use the return, if it...
I'm trying to set up a signal handler so that I can catch catch SIGIO to handle async read operations from the serial port. I define my signal handler as:
I'm trying to create something like a virtual circuit. I create a series of objects and link them to one another withe what each object understands to be the input and the output. Now I...
easiest way I can think of is post the form to a javascript validator that, at the end of validation, redirects the browser to "telnet://ipaddress". Of course if you want to get fancier check out...
I've never done this before but it used to work in the dos world...
If you create an ofstream to you printer device (prolly dev/lpt0 or something like that) the you can simply stream data to that...
I have a variable in a templated class (A) that I want to be able to change from a wrapper class (B). The data type of A changes with each instance (string, int, float...), but what I'm wondering is...
braileanul, you may still be encountering a problem with your project settings like Guys said. Try this, open a soure FILE with your example, it will ask you to create a project when you start to...
Can I use winsock to join a multicast group and send/recieve multicasts transmissions? It seems that the key player in this is talking IGMP to join the multicast group.
I have a few functions I'm using to write values to a binary file. The problem is when I read from the file to retrieve values all I get is the last value written.