what is a void pointer?
Answers were Sorted based on User's Feedback
Answer / karthik
void *p;
its void pointer.
it can point to any pointer like int*,char*,etc....
that is use of void*.
| Is This Answer Correct ? | 3 Yes | 2 No |
can we access one file to one directory?
Write the following function in C. 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.
difference between semaphores and mutex?
What are the primitive data types in c?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
Please write the area of a RIGHT ANGLED TRIANGLE.
What is the function of multilevel pointer in c?
I need previous papers of CSC.......plz help out by posting them.......
What is function pointer c?
Explain what is the difference between declaring a variable and defining a variable?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What are structure types in C?