> For the complete documentation index, see [llms.txt](https://mr-poston-1.gitbook.io/c++/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mr-poston-1.gitbook.io/c++/6.-recursion/6.2-procedural-recursion/6.2.1-procedural-recursion.md).

# 6.2.1 Procedural Recursion

In this lesson, you will explore more recursion examples using **Procedural Recursion.** Procedural recursion is the same concept as functional recursion, however in procedural recursion, the function does not return a value.

While not returning a value, procedural recursion is still very common. Some applications will print values, while others may be used to search through values or update other data structures.
