In c we can deal with ports as LPT it's quit easy to do under win9x or winme os. On winxp u need to break the security on the port bcus its not allowed to deal...
... Why do you want to use the parallel port directly? In order to interface with some hardware directly? If so, you should write a device driver and not try...
Hi, I got some data files in matlab and I want to read them in C. I tried but got 0.0000 for each values. Let us say I have a vector comprising N points and is...
Hi, in the pdf files of matlab help there r file called (m-file format) book it contains information about how this file store information in it , i think it...
you can use Windows API functions like CreateFile, ReadFile, WriteFile etc.. to access different comm resources (serial ports, parallel ports, fax, modems...
Hi Iam badly in need of help as my assignment is due in 2days i have a webserver and webclient program to display a webpage that the client request where i got...
Hi, using winapi we could reach any opened Edit window by looking for its class or testing the text inside it or looking for its knowen parent. When we get the...
Hi This is my webserver program * this is my webserver program **************************************************************** #include<sys/socket.h> ...
And what should I do if I wish to write portable code? ... WriteFile etc.. to access different comm resources (serial ports, parallel ports, fax, modems etc..)...
... <snip> Not every hardware platform has I/O ports. So "portable" can only mean that you isolate every hardware-specific code as much as possible. This is,...
Hi folks, Any comments on this book (Ivor Horton's Beginning Visual C++ 2005). I am a beginning C++ programmer and thinking about buying it. Also, any...
... The most likely variant (I haven't taken a closer look at compilers for ages) is a record (like a simple C struct) which contains one special pointer:...
DevSquare(http://devsquare.com/) is an online development platform you can use to assess your coding skills, practice coding concepts and develop applications....
Hi folks, I have 3 questions about socket programming: 1) Does anybody know a good book/link/website on TCP/IP socket programming in C for windows (and UNIX)? ...
the best book that i ve come through is unix network programming by stevens.. hope it is beneficial 2 u nishant ... -- The history of the world is the history...
Hi All, I have a query. Lets say i create a child process using fork and execvp commands. Now, I need to maintain similar states between the parent and the...
... <snip> Hi Deepak, no, no way. SIGKILL is immediately executed by the signal transfer mechanism, that means BEFORE the signal handler in your code will even...
Hi Abhishek & Nico, Thanks a lot for your help, I understand that SIGKILL command cannot be handled, using the signal function. But, currently i need a...
well there are some foolish work arrounds 1. You can ask the child process to monitor if the parent exists and program it to terminate itself as soon as the...
i hope this may be useful.you need to dig a bit though If a session has a controlling terminal, CLOCAL is not set and a hangup occurs, then the session leader...