
- Home
- Activity Stream
Activity Stream
New Activity ()
Please reload this page to view the 200+ new activity items that have been created.
-
Older Activity
-
Today, 07:33 AM
How about getpeername function?
2 replies | 87 view(s)
-
Today, 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 | 87 view(s)
-
Yesterday, 08:14 AM
https://en.cppreference.com/w/c/io/FILE
https://en.cppreference.com/w/c/io/std_streams
4 replies | 171 view(s)
-
Yesterday, 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 | 87 view(s)
-
Yesterday, 06:57 AM
Where can I find info about this mode ?
4 replies | 171 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 | 171 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 | 171 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 | 171 view(s)
-
June 1st, 2023, 09:10 AM
It's good idea I'll try It. Thanks
2 replies | 124 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 | 124 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 | 124 view(s)
-
June 1st, 2023, 03:11 AM
I suggest you ask this question on this site's sister site VBforums:
https://www.vbforums.com/forumdisplay.php?1-Visual-Basic-6-and-Earlier
3 replies | 160 view(s)
-
June 1st, 2023, 01:50 AM
What is the "RayCasting"?
3 replies | 160 view(s)
-
May 31st, 2023, 10:50 AM
heres the entire code:
Option Explicit
Private Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)
Private Const PI As...
3 replies | 160 view(s)
-
May 31st, 2023, 10:49 AM
how working with RayCasting?
i have these code for RayCasting:
Private Sub rayCasting() ' O RayAngle é o angulo atual do "raio".
' se ele...
3 replies | 160 view(s)
-
May 27th, 2023, 12:52 AM
I found out that you don't want to use == to compare strings in Java. You need to use .equals method or the .compare method.
3 replies | 297 view(s)
-
May 26th, 2023, 11:42 AM
Or just that you're assuming == does what you want.
import java.util.Scanner;
public class PlayForOzzy
{
public static void main(String...
3 replies | 297 view(s)
-
May 26th, 2023, 05:33 AM
Using the debug library (oraocci11d.lib, vc9; NOT oraocci11.lib) for the debug mode did the trick for me (Toolset VS2008 in VS2017).
4 replies | 5391 view(s)
-
May 26th, 2023, 01:21 AM
I tested to see what was contained in the personsGuitar variable after that line executed and indeed LesPaul was in that variable. I also tested to...
3 replies | 297 view(s)
-
May 25th, 2023, 11:22 PM
in c#, when i add item to listView1 there will be two images via command:
...
string imgName =...
0 replies | 247 view(s)
-
May 25th, 2023, 11:00 PM
I have this cool program that uses a logical operator to join two conditions in an if statement. Basically for a person to get a job playing for Ozzy...
3 replies | 297 view(s)
-
May 25th, 2023, 06:31 AM
It's de]code goes here
> userNumberOfYearsPlayed = keyboard.nextInt();
This reads a number, but does NOT consume the newline at the end of it.
...
2 replies | 155 view(s)
-
May 25th, 2023, 03:41 AM
I could not see any thing that says how to post code. I suspected it would be but it looks like that didn't work. I'm using Java 20 its I think the...
2 replies | 155 view(s)
-
May 25th, 2023, 03:36 AM
I got this program using nested ifs and it compiles fine but gives me the wrong outcome. The way it is now, when I run the code and the first...
2 replies | 155 view(s)
-
May 22nd, 2023, 12:01 PM
Too bad that the recruitment has finished and I only now saw the announcement.
Is another recruitment campaign expected soon?
It is my dream to...
1 replies | 1046 view(s)
-
May 21st, 2023, 07:21 AM
I have one server and several clients which have different functions (e.g. to communicate result of data detection, to , I need to define ...
0 replies | 354 view(s)
-
May 21st, 2023, 07:05 AM
Thanks, I'll give a lot of importance to your suggestions.
3 replies | 449 view(s)
-
May 19th, 2023, 03:00 AM
in the devexpress suite use gridView1 to color the cell and enter text into the cell? do you have a demo example to share with ?
0 replies | 246 view(s)
-
May 18th, 2023, 03:58 AM
If supported, the closest you're going to get is to use getch() (or _getch() if using MS VS) from conio.h - but this isn't 'standard' c. This...
4 replies | 557 view(s)
|
Click Here to Expand Forum to Full Width
|