source:
driver/tests/test6.c
Last change on this file was 2988, checked in by , 8 years ago | |
---|---|
File size: 131 bytes |
Line | |
---|---|
1 | int foo(int x) { |
2 | return (x+1); |
3 | } |
4 | |
5 | int main() { |
6 | int (*goo)(int x); |
7 | goo = foo; |
8 | return ((*goo)(3)); |
9 | } |
Note: See TracBrowser
for help on using the repository browser.