Answer Posted / vadivel t
void pointer is a pointer which can be point to any kind of
data types
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is a wrapper function in c?
What are integer variable, floating-point variable and character variable?
Can a variable be both constant and volatile?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is string in c language?
When is a null pointer used?
What are the different types of linkage exist in c?
What is difference between structure and union in c?
can anyone please tell about the nested interrupts?
List a few unconditional control statement in c.
Explain the bubble sort algorithm.
In which layer of the network datastructure format change is done
Where static variables are stored in memory in c?
List the variables are used for writing doubly linked list program.