⟩ How do I initialize a pointer to a function?
This is the way to initialize
a pointer to a function
void fun(int a)
{
}
void main()
{
void (*fp)(int);
fp=fun;
fp(1);
}
This is the way to initialize
a pointer to a function
void fun(int a)
{
}
void main()
{
void (*fp)(int);
fp=fun;
fp(1);
}
What is Pic 9v99 Indicates?
How do you reference the following file formats from COBOL programs?
What is an in line PERFORM? When would you use it? Anything else you wish to say about it.
What is the difference between NEXT SENTENCE and CONTINUE?
What is an explicit scope terminator?
What are the differences between COBOL and COBOL II?
What is the difference between SEARCH and SEARCH ALL? What is more efficient?
What care has to be taken to force program to execute above 16 Meg line?
How do you submit JCL via a COBOL program?
What guidelines should be followed to write a structured COBOL prgm?