1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 04:59:50 +02:00

Update index.md

Just adjusted a space, now it's more readable
This commit is contained in:
Artorias - The Abyss Walker
2024-03-08 23:14:04 +05:00
committed by GitHub
parent 09cb1ea827
commit f33af1dcf3

View File

@@ -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
}
```