Ashish Shahashish-shahs-blog.hashnode.dev·Feb 2, 2025What the heck is "Preprocessor directive" in C++?💡 tl;dr - certain action is done by pre-processor before actual complilation of source code. The goal is to share: what is Preprocessor Directive in C & C++ and what are the different ways we use it. I’m writing this ‘blog’ today 2 February 2025 b...19 likes·52 reads#chaiaurcpp
Ayush Bacademia.hashnode.dev·Jan 3, 2025Keep Calm and Code in Cdescription:→ Embark on a comprehensive journey into the world of C programming with "Keep Calm and Code in C." This course is meticulously designed for beginners eager to grasp the foundational concepts of the C language, as well as for seasoned pro...suggestion
Sean M. Drew Sr.blog.seandrew.info·Jan 1, 2025Working with Matter Team Membership Using the IntApp Walls APIThe IntApp Walls API is a powerful tool for managing ethical walls and securely controlling access to sensitive data. By leveraging its operations, developers can efficiently interact with matter teams, manage memberships, and ensure compliance with ...IntApp
Sudi Davidsudi.dev·Sep 14, 2024Code Smart, Not Fast: Avoiding Premature OptimizationAs a software engineer with several years of experience, I've seen my fair share of projects go off the rails. But there's one mistake that keeps popping up, no matter how many Medium articles warn against it: premature optimization. It's like that o...2 likes·47 readsperformance
Pool Resurfacing Pluspoolresurfacinggilbert.hashnode.dev·May 22, 2024Mastering CSS: Unlock the Secrets to Stunning Web DesignMastering CSS: Unlock the Secrets to Stunning Web Design In the ever-evolving world of web development, CSS (Cascading Style Sheets) remains a fundamental cornerstone for creating visually appealing and responsive websites. While HTML provides the st...c#
Maitri Pateltechnologicalblog.hashnode.dev·Apr 18, 2024Top 8 tools for C# development in 2024Introduction In the ever-evolving software development landscape, staying abreast of the latest tools and technologies is paramount. Choosing the right toolset for C# development can greatly improve output, optimize processes, and result in the devel...125 readsC#
attitude academyattitudeacademy.hashnode.dev·Apr 9, 2024Hacks to Speed Up Your C++ DevelopmentIntroduction: Are you a computer science student looking to boost your productivity in C++ development? Whether you're working on projects, assignments, or preparing for a career in software development, optimizing your C++ development process can sa...C++
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 8, 2023C# Data StructuresData structures are a way of organizing and storing data in a computer so that it can be used efficiently. Some of the main types of data structures are: Arrays - Arrays store data in a linear fashion, using indexes to access the data. They are fast ...40 readsC# Fundamentalsdata structures
Hitesh Bhavsarhiteshbhavsar.hashnode.dev·Apr 9, 2023.Net 5: Worker ServiceIntroduction to Worker Service Worker Service is a feature of .NET that allows developers to create long-running background processes that can run independently of the main application. With the recent release of .NET 5, Microsoft has introduced a ne...138 reads.NET
Md Asif Alammeasifalam.hashnode.dev·Feb 26, 2023Assign the same value to multiple variables in a single statementYou might be seen this statement previously where we assign a single value to multiple variables, int num1, num2, num3; num1 = num2 = num3 = 5; But within C# we can assign multiples values to multiple variables using the statement var (a, b, c) = (...c#