From f33af1dcf3eddac17e2d61a14562a1a6eb226b30 Mon Sep 17 00:00:00 2001 From: Artorias - The Abyss Walker <158484431+AbrorPatidinov@users.noreply.github.com> Date: Fri, 8 Mar 2024 23:14:04 +0500 Subject: [PATCH] Update index.md Just adjusted a space, now it's more readable --- .../roadmaps/cpp/content/105-pointers-and-references/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/cpp/content/105-pointers-and-references/index.md b/src/data/roadmaps/cpp/content/105-pointers-and-references/index.md index c7f205ce15da..5653ca179ac0 100644 --- a/src/data/roadmaps/cpp/content/105-pointers-and-references/index.md +++ b/src/data/roadmaps/cpp/content/105-pointers-and-references/index.md @@ -28,7 +28,8 @@ int add(int a, int b) } int main() -{ int (*funcptr) (int, int) = add; // Pointer 'funcptr' now points to the functions 'add' +{ + int (*funcptr) (int, int) = add; // Pointer 'funcptr' now points to the functions 'add' funcptr(4, 5); // Return 9 } ```