Technology, Politics, and Folk Literature

GTK4 Pt. 1

This is the first article in the series of articles where we are going to learn GTK4 or GTK to build the desktop applications for the GNU/Linux systems. In order to follow this sereis, you need to install couple of software (and few more along the way).

TIL: typedef is not recommanded with struct in C

Today, I learn that typedef with struct trick give you a way to use structure tag like normal type. But, it is not suggested as mentioned in Linux kernel coding style document except few scenarios.

TIL: Recommended Way to Define Pointer Variables in C

Today, I learn that we should use int* x to define a pointer variable than int *x. Why?