mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-13 12:43:59 +02:00
Update index.md
This commit is contained in:
committed by
GitHub
parent
09cb1ea827
commit
2a54ebb091
@@ -28,7 +28,8 @@ int add(int a, int b)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main()
|
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
|
funcptr(4, 5); // Return 9
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Reference in New Issue
Block a user