C Code Snippets:)
Datatypes
#include <stdio.h>
// struct datatype
struct Person {
char name[50];
int age;
float salary;
};
// enum datatype
enum color {RED, GREEN, BLUE};
int main() {
// Basic data types
int a = 10; // 4 bytes
float b = 5.5...
madhavganesan.hashnode.dev6 min read