Answer Posted / k.thejonath
void (*)f();
Here f if is pointer to a function having no arguments and
no return values.
| Is This Answer Correct ? | 7 Yes | 8 No |
Post New Answer View All Answers
What header files do I need in order to define the standard library functions I use?
What is the difference between the expression “++a” and “a++”?
What is hungarian notation? Is it worthwhile?
Why c is called object oriented language?
Can we use visual studio for c?
When can you use a pointer with a function?
What are register variables? What are the advantage of using register variables?
What is an identifier?
praagnovation
What are integer variable, floating-point variable and character variable?
What happens if header file is included twice?
What is the purpose of realloc()?
Why c is called top down?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is storage class?