typedef in CTo give a new name to a type A normal convention of declaring a struct: struct Node { int data; struct Node* next; }; struct Node* newNode = NULL; void AddToEnd(struct Node **ppList, int value); int Count(struct Node *list); with typedef (N...Apr 6, 2023·1 min read
Formatting and Extracting Date in ReactTo extract Day, Month and Year using toLocalStringFeb 17, 2022·1 min read