Posts by Luccas Gabriel • 53 points
3 posts
-
1
votes1
answer97
viewsQ: Would it be possible for me to connect to a java server using basic Socket using a Javascript client?
I am studying game development and lately considered developing a game next or even online. There are two Ides where I can develop games, Unity3d and RPG Maker MV that use javascript. I’m a beginner…
-
2
votes2
answers774
viewsQ: Generating random number in C language
Let’s assume I have an empty array of size 8. int A[8]; And then I intend to fill it with random values whose I would have a function similar to the rand(); However, I call on rand() for each…
-
-2
votes1
answer677
viewsQ: Algorithm to generate a character diamond
I’m trying to make a C program to generate a diamond as exemplified in the image below: I couldn’t get an algorithm to generate the characters and spaces needed on each line. What a reasonable way…