A set of technologies in .NET for building web applications and web services. Miscellaneous topics that do not fit into specific categories.
Ok well, I don't know C# very well just yet, very object oriented and yeah, I believe C# is one of those heavy callback programming languages
But I can get you on your somewhat start to VC++ by explaining C++ pointers.
You see, pointers "point"
you see, int x = 20; does not in theory point, it allocates memory directly to the variable x
Where
int y = 100;
int *x = &y;
*x = 200;
will change both values of the pointer x and the regular int value of y to values both of 200; so you can do y = 150; and *x will "point" to that value
this is a different scenario:
int x = new int;
this is direct memory allocation, and instead of pointing to another variable, allocates a pointer as a normal integer value
so your code would be as simple as, and I can explain string and characters later, check out chatgpt
#include <ftp.h>
#include "main.h"
int main(){
string filename = "worker.exe";
string url = "ftp.company.net";
followed by structures and other cool classes to place data in functions, I don't know, best I can do to get someone started in c++!
the rest is easy, install chatgpt on your phone and keep tapping!!
I have to go install windows on my hp envy, sorry I couldn't help more!!