Posts by Raoni Sian • 91 points
3 posts
-
0
votes2
answers412
viewsA: Remove elements from the end of a list in C
I suggest creating a struct to type "node", where you will store your data, and control the first and last within the list struct. And you should create only a list and pass it as a reference (via…
canswered Raoni Sian 91 -
0
votes1
answer403
viewsA: How can I create vpn connections using cloud services like AWS?
In AWS you need to first set up a VPG (Virtual Private Gateway). It will allow later VPN tunnels to be created. Then create a Customer Gateway, which is actually only YOUR Public IP that you will…
-
6
votes1
answer434
viewsA: What is the use of struct in c?
The struct is basically used to group variables that have a common goal and create new types of data. Technically, the struct will physically align this data in memory allowing it to be accessed by…