Rafal Jackiewiczjackiewicz.hashnode.dev·Jan 28, 2025Function Pointers and Callbacks in C Programming1. Introduction In the realm of software development, the ability to build applications that can adapt and respond dynamically is crucial. Dynamic behavior allows programs to modify their execution paths based on user input, external conditions, or o...35 readsqsort
Gourab Dasgdcademy.hashnode.dev·Jan 16, 2025Prerequisite to learn before pointerPrerequisite Topics and Concepts to Learn Pointers in C Before diving into pointers, it is essential to have a solid understanding of the following concepts: 1. Variables and Memory Key Points: A variable is a named location in memory used to store...C
Fırat TONAKfirattonak.com·Jan 15, 2025Enhancing API Security with Middleware: Filtering and Masking Requests in .NET CoreMiddleware is a key part of how modern web apps are built, working as a middle layer that handles requests and responses. In API systems, middleware helps make things safer, work better, and follow rules about protecting data. One big problem develop...30 readsASP.NET Core SnippetsRequest Filtering
Basil Ajithundefined.pyfy.ch·Jan 1, 2025A Simple Tip For Simplifying Complex ConceptsTry defining a concept using a single word or phrase. This will help you understand the concept more deeply. Try to answer the question “What is it?” yourself. However, use only a single word or phrase in the answer. This will make you understand the...1 likec programming
Jatin shankar Srivastavajatin-devopw.hashnode.dev·Dec 13, 2024Stripping in Reverse Engineering: A Concept Overview with Code ExampleStripping is a technique used in reverse engineering to remove or obfuscate non-essential metadata from a compiled binary. This process reduces the file size and makes it more challenging for reverse engineers to understand or analyze the executable....10 likes·26 readsBinary Stripping
Rafal Jackiewiczjackiewicz.hashnode.dev·Dec 11, 2024Advanced Bit-Level Operations in C for Embedded SystemsIntroduction In the world of embedded systems, efficiency is paramount. These systems often operate under strict constraints, such as limited memory, processing power, and energy consumption. Bit-level operations in C provide a powerful toolkit for d...78 readsC
Arghya Roy Chowdhurymy-c-programming-journey-begins.hashnode.dev·Dec 2, 2024Learning C: Phase 1 (10 days)Introduction Hello and welcome to my blog! I'm excited to share my journey of learning C programming with you all. As a beginner, I've finally decided to take the first step towards becoming a programmer myself. I've chosen to start with C programmin...beginner's journey
Sarthak Kulkarnicombustrrr.hashnode.dev·Dec 1, 2024Learning Input Methods in CChallenge: You need to read and print a character, a word (string), and a sentence (with spaces) in C. Each input type must be handled correctly and output in the required format. Solution: #include <stdio.h> int main() { // Declare variables fo...Input Handling
Suriya Gnanamoorthysuriyaofficial.hashnode.dev·Nov 19, 2024Building a Simple TCP Web Client in CIntroduction In this post, we'll walk through building a simple TCP web client from scratch. Instead of posting the entire code upfront, we'll dive straight into the important sections, explaining the key concepts step by step. Below here I have show...Confessions of a Networking Newbie : A Journey into Code and Conceptsnetworking
Vibhas Thakurdesaicodotics.hashnode.dev·Nov 10, 2024Write Your First Program In C· HEADER FILES Header files consist standard functions which are essential to write our program. It is code which is already written in C so we can use it directly. Without declaring proper header file code will not run. At basic level we will u...c programming