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, 3041👍, 0💬
Popular Posts:
How to make elements invisible? Change the "visibility" attribute of the style object associated wit...
What metrics will you look at in order to see the project is moving successfully? Most metric sets d...
Is There Any XSD File to Validate Atom Feed Files? - RSS FAQs - Atom Feed Introduction and File Gene...
What is the difference between delegate and events? ã Actually events use delegates in bottom. But ...
How to measure functional software requirement specification (SRS) documents? Well, we need to defin...