why use "return" statement
a) on executing the return statement it immediately transfers the control back to the calling program
b) it returns the value present in the parentheses return, to the calling program
c) a & b
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use return in c?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is anagram in c?
Why we not create function inside function.
How do I get a null pointer in my programs?
how to multiply two number taking input as a string (considering sum and carry )
Difference between C and Embedded C?
swap two integer variables without using a third temporary variable?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
How do you use a pointer to a function?