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...63 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
Suriyasuriyaofficial.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
Jalaj Singhaljalajsinghal3.hashnode.dev·Oct 20, 2024Doubly link listLike doubly link list it also contains address of next node and data but the change is that it also contains the address of previous node. So here we have 3 block of Previous node address Data Next node address We will make it using 5 function:...C
Rafal Jackiewiczjackiewicz.hashnode.dev·Oct 15, 2024The Role of C in the Age of IoT and Embedded SystemsAs we move deeper into the era of smart devices and connected systems, the Internet of Things (IoT) continues to revolutionize industries—from healthcare and agriculture to smart homes and cities. At the heart of this revolution is C, a language that...EmbeddedDevelopment
Jalaj Singhaljalajsinghal3.hashnode.dev·Oct 13, 2024Singly Link List ReversalLike the way we have implemented singly link list traversal meaning that we have printed the link list in the order they were inserted we will print them in reverse order. The working of this code is as follows:- Code for Doubly Link List with prop...C
Bhuwan Sharmabhuwan.hashnode.dev·Sep 22, 2024C Tutorial -5 (Functions and recursion)#include<stdio.h> #include<stdlib.h> #include<time.h> // Q.1 Function to find average of three numbers. float avg(int a, int b, int c){ int sum = a + b + c; float avg = sum/3.0; return avg; } // Q.2 Funtion to convert Celsius to Fahrenheit. float cel...C