Search Results

0
votes
2answers
1k views

N-ary trees in C

Which would be a neat implemenation of a N-ary tree in C language? Particulary, I want to implement an n-ary tree, not self-ballancing, with an unbound number of children in each node, in w …
5
votes
10answers
482 views

Any good online C reference manual?

I've studied C programming in college some years ago and have developed some medium applications back then (nothing serious). Now I have to develop some more 'advanced' C applications (involving PO …
5
votes
9answers
454 views

Can the server use the same socket to send the response to the client? how?

I am using Berkeley sockets (both: Internet domain and Unix domain) and I was wondering if the server can use the same sockets for reading the request and writing a response to the client. Or shoul …
6
votes
4answers
1k views

Passing an array of strings as parameter to a function in C

I want a simple function that receives a string and returns an array of strings after some parsing. So, this is my function signature: int parse(const char *foo, char **sep_foo, int …
0
votes
7answers
1k views

Problem redirecting a C program output in bash

I've coded a program in C that sends messages to the stdout using printf and I'm having trouble redirecting the output to a file (running from bash). I've tried: ./program …
1
vote

Can the server use the same socket to send the response to the client? how?

Sorry; I did not say it but I did try it like this This code in the server where the comment is: write(connected_socket, "Ok, I got it", sizeof("Ok, I got it")); …