How to format/send/receive UDP packet in C?15128 (6/24/2003 12:17:22 AM) I'd like to ask about how to format/send/receive UDP datagram packet in C language. The server that I'd like to send the packet to is listening on port 1500. When I succesfully connect to that port, it's gonna ... abbkung(23)
Problems with fgets and reading in a number655 (6/25/2003 5:39:10 AM) I have two problems with a program. One is related to fgets reading in the new line and the other is reading in a number that begins with a zero. =============================================== The dialog wit... FakeAddress1(3)
open serial port with C643 (6/24/2003 7:41:33 PM) Is it possible to grab the serial port using C? If so, can I control each line seperatley? I need to control the serial port in such a way to get bit by bit transmission out. I am controlling a serial eeprom wi... coconnor(1)
Displaying of the Stack Trace247 (6/24/2003 10:26:40 AM) I have written a program, which is very compicated and so it happens quite often, that it has to exit itself, because its handling an invalid index of an array. (It never crashes, it always nicely exits). Never... guenther.sohler6329(11)
Connect to Access149 (6/24/2003 11:18:56 PM) I am currently trying to connect to a MS Access db with c using Bloodshed Dev-C++ compiler. The problem is I don't know how to and everywhere I go uses technics that require MS Visual Studio or .Net or some ot... member21406(1)
Real conspiracy theory's script: forced confession042 (6/25/2003 3:06:40 PM) -people of the world jews tested biological and chemical weapons on me since I was only 7 years old, they destroyed various body parts of my body. This has been the fate of entire Muslim Ummah for decades, they... I.am.a(3)
C function override546 (6/24/2003 10:05:21 PM) I got these two functions and questions from an employer. I know pointer and pointer array, but how can I implement without modifying original implementation. Could someone help me on this question? Does C su... sampal(8)
Variable and pointer344 (6/25/2003 1:09:44 PM) I am a n00b to c, so have pitty on me if I ask dumb questions :-). I have a function (testframe() ) that has needs a pointer to a 6 byte MAC address as input. The input is an unsigned 8 bit char pointer. This p... Julia_Hansen(1)
pointer to structure passed by ref755 (6/24/2003 7:35:28 AM) consider the following code /***********************************************************************/ #include #include #include struct student { int id; char n... ibbu79(15)