Size matters!
The sizeof operator in C is used to determine the size, in bytes, of a data type or a variable. Here's a sample code that demonstrates how sizeof works in various contexts:
#include <stdio.h>
int main() {
// Size of basic data types
printf("...
blog.jyotiprakash.org2 min read