This void (*anjula[])(int, float) is:A pointer to a function that takes an int and a float as parameters and returns nothingAn array of pointers to functions that take an int and a float as parameters and returns nothingA pointer to a function that takes an array of int and float as a parameter and returns nothingA pointer to a function that takes an int and a float as parameters and returns an empty arrayA pointer to an array of functions that take an int and a float as parameters and returns nothingI don't knowSubmit
Question
This void (*anjula[])(int, float) is:A pointer to a function that takes an int and a float as parameters and returns nothingAn array of pointers to functions that take an int and a float as parameters and returns nothingA pointer to a function that takes an array of int and float as a parameter and returns nothingA pointer to a function that takes an int and a float as parameters and returns an empty arrayA pointer to an array of functions that take an int and a float as parameters and returns nothingI don't knowSubmit
Solution
This is an array of pointers to functions that take an int and a float as parameters and returns nothing.
Similar Questions
This void (*anjula[])(int, float) is:
What is (void*)0?Select one:a.Representation of NULL pointerb.Representation of void pointerc.Errord.None of above
Question 7Which code correctly calls a function, given a function pointer variable, fptr, that has no parameters and is type void?1 point*fptr = 2;2 = *(fptr & 0x2);(*fptr)();(fptr)(*);fptr();
o store the address of this function:void neyo(void);to the variable f of type pointer to a function that does not take any argument and does not return anything, you would do (check all correct answers if there is more than one):*f = neyo;*f = &neyo;f = &neyo;f = neyo;
What does the following C-statement declare?int ( * f) (int * ) ;a.A function that takes an integer pointer as argument and returns a function pointerb.A pointer to a function that takes an integer pointer as argument and returns an integer.c.A function that takes an integer pointer as argument and returns an integerd.A function that takes an integer as argument and returns an integer pointer
Upgrade your grade with Knowee
Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.