Vishesh Raghuvanshiblog.visheshraghuvanshi.me·Sep 20, 2023C-Programming Operators and KeywordsOperator An operator is a symbol that performs some operation on one or more operands. Operators are used to assign values, compare values or perform calculations with values. Arithmetic Operators Relational Operators Logical Operators Keywords ...Discuss·4 likesC ProgrammingC
binamin binkabinka.hashnode.dev·Aug 15, 2023Why You Need Preprocessor In CPreprocessor in C refers to the essential steps performed before the compilation of a C program. To understand this better, take the example "Food" Cooking rice is the processing while collecting all ingredients in the right amount performing all the...Discusspreprocessor
Hyunwoo Choihyunwoochoi.hashnode.dev·Aug 1, 2023Conditional preprocessor directives in C/C++When you are facing to use microcontroller vendor's library code or toolchain, you would see many conditional preprocessor directives. In using conditional preprocessor directives, you would be able to write code that can be generalized. For example,...DiscussC
Renr3n.hashnode.dev·Jul 8, 2023Tech Chronicles: Conquer Memory Monsters with Python's Yield in Large Directory ProcessingIn today's data-driven world, handling large directory structures containing numerous files and subdirectories is a common challenge. Whether you're working with massive datasets, organizing files, or performing resource-intensive operations, optimiz...DiscussPython
Gideon Funom Baturegideonbature.hashnode.dev·Jun 8, 2023The C Compilation Process: A Step-by-Step GuideIntroduction C language which is often regarded as a low-level language is a compiled language. Most programming languages fall under compiled and interpreted, the C programming language falls under the compiled group. When they say a language is com...Discuss·10 likes·33 reads2Articles1Week
Mahlet Seifumahlet.hashnode.dev·May 22, 2023Pre-processors in CIntroduction The C preprocessor is a handy tool that helps us modify our code before it's compiled. It allows us to define shortcuts called macros, access useful information through predefined macros, and prevent header file duplication using inclusi...Discuss·91 readsc programming
Bright Ugbedevbrightly.hashnode.dev·Apr 18, 2023What #include, #define and others really do in your C ProgramA good majority of programmers (especially beginners) when starting in learning about the C language, often find it hard to understand essential concepts required for every C program to function correctly. This is not only experienced in the Compiled...Discuss·10 likes·52 readsc programming
Godspower Mukorogmukoro.hashnode.dev·Apr 13, 2023Demystifying the Step-by-Step Execution Process of a C ProgramHave you been wondering how files get executed in C and the files created in each stage until their actual execution? Here is its comprehensive breakdown. There are different stages involved in the execution of the C program. The stages are shown in ...Discuss·1 like·49 readsC
Starlightstarlightwrites.hashnode.dev·Feb 23, 2023C Preprocessor Directives: What are they and why should you care?Introduction When it comes to programming in C, the preprocessor directives are one of the most important and useful features. These directives are a set of instructions that are executed before the code is compiled, allowing you to customize the out...Discuss·10 likes·32 readsC