Answer Posted / 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 |
Post New Answer View All Answers
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Is array name a pointer?
What is infinite loop?
Is it possible to initialize a variable at the time it was declared?
What does sizeof int return?
Why is event driven programming or procedural programming, better within specific scenario?
what will be the output for the following main() { printf("hi" "hello"); }
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What is a loop?
What is an operator?
Ow can I insert or delete a line (or record) in the middle of a file?
What are data types in c language?
Are comments included during the compilation stage and placed in the EXE file as well?
What do the functions atoi(), itoa() and gcvt() do?
What does the characters “r” and “w” mean when writing programs that will make use of files?