Alexander PanovforRoyalZSoftwareroyalzsoftware.de·Dec 13, 2023Advent Calendar #13 - C is object-oriented?Although this does not fit the current series of javascript, typescript and web development paths, I still want to talk about, it because I recently learned about it. For a long time, I thought, that functional programming was called functional progr...C
Peter Wisdomwisepeter.hashnode.dev·Jul 5, 2023Introduction to Structs in C: Managing Complex Data StructuresThe C language allows us to build custom data structures to better manage our data. While arrays are very useful and convenient, they have shortfalls that limit their usage. An array can only store a collection of identical objects; however, real-wor...3 likes·39 readsstruct
Fridahfridah.hashnode.dev·Apr 21, 2023Creating a Simple Calculator in C using structs and function pointersThis is a C program that performs basic arithmetic calculations based on the command line arguments provided to it. The program takes three command line arguments, the first and third arguments are the two operands, and the second argument is the ope...99 readspointers in c