Since 4/2/2012 5:56:42 AM, nitin.kp has written 4 articles and participated in 4 conversations. nitin.kp signature: nitin.kp
nitin.kp's articles:
Items(4) /1
Too many one line function calls1027 (3/3/2005 10:14:19 PM) comp.lang.c Ppl , Want to have ur opinions on having function calls like the one stated below: function funcA ( struct A *st_A , struct B *st_B ) { st_A->a = st_B->a } Basically Is it a nice programming practic... Nitin
Too many one line function calls1130 (3/3/2005 10:11:44 PM) comp.unix.programmer Ppl , Want to have ur opinions on having function calls like the one stated below: function funcA ( struct A *st_A , struct B *st_B ) { st_A->a = st_B->a } Basically Is it a nice programming practice to ... Nitin
fsync problem5130 (2/7/2005 3:19:35 PM) comp.unix.programmer Hi Ppl , Sometimes the fsync function call is giving errors... The fsync call results in error number 28 which says No space left on device even when plenty of space is there. Also one more thing which I observ... Nitin
nitin.kp's replies:
Items(4) /1
parsing commands and parameters2336 (4/3/2005 11:58:46 PM) comp.lang.c Hi, To learn some C, I am writing a sample POP server in standard C to handle connections from a standard telnet client. The client will send to the server one of the following commands in a single line ove... me4(18695)
Multiple writes to client socket324 (4/2/2005 2:44:50 PM) comp.lang.c Hi, I have a written a simple client server app using sockets in c. My client code works great for a single send/recv operation but as soon as I try to write (send) to the same socket again the server does not... daniel.draper(1)
malloc problem #32732 (3/29/2005 10:19:02 AM) comp.lang.c Hello everyone: I have a problem like this : typedef struct node { char *data; struct node *next; }lnode; when I allocate space for node p : p = (lnode *)malloc(sizeof(struct node)); it happened display :... sabads
Too many one line function calls1027 (3/3/2005 10:14:19 PM) comp.lang.c Ppl , Want to have ur opinions on having function calls like the one stated below: function funcA ( struct A *st_A , struct B *st_B ) { st_A->a = st_B->a } Basically Is it a nice programming practic... nitin.kp(8)