
- Home
- Activity Stream
Activity Stream
New Activity ()
Please reload this page to view the 200+ new activity items that have been created.
-
Older Activity
-
June 4th, 2023, 07:33 AM
How about getpeername function?
2 replies | 163 view(s)
-
June 4th, 2023, 01:50 AM
Where
ssize_t recv(int sockfd, void *buf, size_t len, int flags);
ssize_t recvfrom(int sockfd, void *buf, size_t len, int flags,...
2 replies | 163 view(s)
-
June 3rd, 2023, 08:14 AM
https://en.cppreference.com/w/c/io/FILE
https://en.cppreference.com/w/c/io/std_streams
4 replies | 246 view(s)
-
June 3rd, 2023, 07:05 AM
I'm developing networking distributed software in Ansi C and server will receive several "connect" from different kinds of clients which make...
2 replies | 163 view(s)
-
June 3rd, 2023, 06:57 AM
Where can I find info about this mode ?
4 replies | 246 view(s)
-
June 2nd, 2023, 03:52 AM
\n outputs a new line and flushes the buffer if line-buffered (default for stdout to console).
printf("test\n");
is the same as:
...
4 replies | 246 view(s)
-
June 1st, 2023, 02:28 PM
Because "\n" causes an automatic
fflush(stdout);
when the output is in line buffered mode (which is the default when using an interactive console)....
4 replies | 246 view(s)
-
June 1st, 2023, 01:07 PM
I'm not able to understand because test is not shown.
printf("test");
while (1);
while in this code Test is shown:
...
4 replies | 246 view(s)
-
June 1st, 2023, 09:10 AM
It's good idea I'll try It. Thanks
2 replies | 146 view(s)
-
June 1st, 2023, 06:09 AM
Why not specify a fixed width format, Possibly something like (not tried):
sprintf(text, "%4s %2s %10d", dato.id, dato.type, dato.dim);
...
2 replies | 146 view(s)
-
June 1st, 2023, 05:37 AM
In Ansi C std C89 I want to send the following structure using text protocol via TCP network socket
char text;
struct Prot {
char id;
...
2 replies | 146 view(s)
|
Click Here to Expand Forum to Full Width
|