In C programming, data types are declarations for variables. This determines the type and size of data associated with variables. For example: …
coding
-
-
Introduction to Programming in C
C : How to use Variables, Constants, and Literals
by WhereWhatHowby WhereWhatHowIn this tutorial, you will learn about Variables, Constants, and Literals in C Programming. In programming, a variable is a container (storage …
-
Introduction to Programming in C
C : What are Keywords and Identifiers and How to use them
by WhereWhatHowby WhereWhatHowIn this tutorial, you will learn about keywords and identifiers in C programming that are part of the syntax. Keywords are predefined, …
-
Advanced Python Topics
Python RegEx : How to search patterns from strings
by WhereWhatHowby WhereWhatHowA Regular Expression ( Python RegEx) is a sequence of characters that defines a search pattern. A pattern defined using RegEx can be used …
-
Advanced Python Topics
Python @property decorator: How to use methods as attributes
by WhereWhatHowby WhereWhatHowPython @property decorator is a built-in function that allows us to define methods that can be accessed like an attribute. This can be …
-
Advanced Python Topics
Python Decorators : How to decorate functions in Python
by WhereWhatHowby WhereWhatHowPython decorators use the Decorator design pattern that allows you to modify the functionality of a function by wrapping it in another …
-
Advanced Python Topics
Python Closure : How to access values from nested functions
by WhereWhatHowby WhereWhatHowPython closure is a nested function that allows us to access variables of the outer function even after the outer function is …
-
Advanced Python Topics
Python Generator(s) : How to Produce large sequences
by WhereWhatHowby WhereWhatHowA Python Generator is a function that returns an iterator that produces a sequence of values when iterated over. Generators are useful when we want to …
-
Advanced Python Topics
Iterators : How to Loop through objects in Python
by WhereWhatHowby WhereWhatHowIterators are methods that iterate collections like lists, tuples, etc. Using an iterator method, we can loop through an object and return its elements.
-
OOPs in Python
Python Operator Overloading : How to make them do more work
by WhereWhatHowby WhereWhatHowThe feature in Python that allows the same operator to have different meaning according to the context is called operator overloading.