GCGuido Casatiincodingnotes.hashnode.dev·Jun 3, 2022 · 1 min readLinux command line cheat sheetSSH remote access with UI on a Linux Server ssh -X <username>@<pc> example: ssh -X bob@pc1 Copy from Linux PC to Windows PC pscp.exe <user>@<pc>:/home/<user>/<PathToFile> "C:\Users\<user>\<PathToFile>" example: pscp.exe bob@pc1:/home/bob/Downloads/my...00
GCGuido Casatiincodingnotes.hashnode.dev·May 25, 2022 · 5 min readFundamental statements about CIn C, all function arguments are passed "by value." This means that the called function is given the values of its arguments in temporary variables rather than the originals. An identifier is a sequence of letters and digits. The first character mus...00
GCGuido Casatiincodingnotes.hashnode.dev·May 17, 2022 · 3 min readqsort, qsort_r, qsort_sOverview Quick-sort algorithm or qsort, sorting algorithm for arrays. It takes a function pointer and a user-definable comparison function containing the sorting routine. The function is an example of polymorphism since it enables the sorting of any ...00