Enhanced readability of tex (#6703)

pull/6704/head
Lucas Dondo 5 months ago committed by GitHub
parent 6b9754e885
commit 3cba71b3ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      src/data/roadmaps/datastructures-and-algorithms/content/101-programming-fundamentals/102-functions.md

@ -1,3 +1,7 @@
# Functions
Functions in programming are named sections of a program that perform a specific task. They allow us to write a piece of code once and reuse it in different places throughout the program, making our code more modular and easier to maintain. Functions often take in input, do something with it, and return output. Functions can be categorized into four main types: built-in functions (like `print()`, provided by the programming language), user-defined functions (written by the user for a specific use case), anonymous functions (also known as lambda functions, which are not declared using the standard `def` keyword), and higher-order functions (functions that take other functions as arguments or return a function).
Functions in programming are named sections of a program that perform a specific task. They allow us to write a piece of code once and reuse it in different places throughout the program, making our code more modular and easier to maintain. Functions often take in input, do something with it, and return output. Functions can be categorized into four main types:
- **Built-in** functions: provided by the programming language, like `print()` in Python.
- **User-defined** functions: written by the user for a specific use case.
- **Anonymous** functions: also known as lambda functions, which are not declared using the standard keyword (`def` in Python, for example).
- **Higher-order** functions: functions that take other functions as arguments or return a function.

Loading…
Cancel
Save