1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-12 20:24:21 +02:00

Update index.md

This commit is contained in:
Artorias - The Abyss Walker
2024-03-08 22:55:49 +05:00
committed by GitHub
parent 09cb1ea827
commit 2a54ebb091

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