Working with the Infamous Strings in C Made Easy
working with strings in C is tricky and error prone, Learn how strings are represented in C and use the right utility to handle them properly
working with strings in C is tricky and error prone, Learn how strings are represented in C and use the right utility to handle them properly
The Online Certificate Status Protocol (OCSP) serves to real-time validate the status of a certificate, offering a much better alternative to the Certificate Revocation List (CRL). OCSP Stapling, utilized in SSL/TLS protocols, involves the server proactively transmitting a recent OCSP response alongside its certificate during the handshake. This enables the client to verify the certificate’s status without direct communication with the OCSP responder
Explore 5 simple but deadly mistakes in your C programming journey that you could avoid to save time from tedious debugging efforts
Do you really know about computer memory? As a C programmer, knowing the fundamental of memory is vital to building reliable applications
the static keyword in C plays a very important role in the scope of a function or variable, learn how to create custom behaviors with static
Explore the fundamentals of a C pointer and learn how to use this unique C feature safely and confidently by real examples
Explore the principles of type casting in C programming to avoid misuse and loss of data precisions problems
A C struct is one of the most common construct used in C programming. Learn to define, declare and use a C struct
C programming essentials. Learn the basis of data types in C. Know what they are, what kind of values they hold and the sizes they occupy.
Declaring a variable is fundamental, but knowing its scope when declared in different ways proves to be more important. Be cautious!
bits and bytes are the fundamentals to binary system that most computing systems are based on. A good C developer must know about them
Using the goto in C is often considered as a bad practice, but it is not always bad, let me show you one best use case with it