Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How do I initialize a pointer to a function?
How do I initialize a pointer to a function?
✍: Guest
This is the way to initialize
a pointer to a function
void fun(int a)
{
}
void main()
{
void (*fp)(int);
fp=fun;
fp(1);
}
2012-03-12, 3038👍, 0💬
Popular Posts:
Write out a function that prints out all the permutations of a string. For example, abc would give y...
How To Concatenate Two Character Strings? - MySQL FAQs - Introduction to SQL Basics If you want conc...
How To Create an Array in PL/SQL? - Oracle DBA FAQ - Introduction to PL/SQL If you want create an ar...
How can I search for data in a linked list? Unfortunately, the only way to search a linked list is w...
How will you freeze the requirement in this case? What will be your requirement satisfaction criteri...