Is null valid for pointers to functions?
No Answer is Posted For this Question
Be the First to Post Answer
What are the valid places to have keyword “break”?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
which is an algorithm for sorting in a growing Lexicographic order
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
why the execution starts from main function
which is the best antivirus and how to update it
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is the purpose of 'register' keyword?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above