Answer Posted / rajesh
Void pointer is the
pointer which itself is
null and can not be
interchanged by others.
Ex-
{
int *a;
void *b;
*a=*b; //valid
a=b; //invalid
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How do I read the arrow keys? What about function keys?
What is the code for 3 questions and answer check in VisualBasic.Net?
There seem to be a few missing operators ..
How many identifiers are there in c?
What is meant by high-order and low-order bytes?
What are the primitive data types in c?
Explain logical errors? Compare with syntax errors.
What does 1f stand for?
Subtract Two Number Without Using Subtraction Operator
The statement, int(*x[]) () what does in indicate?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
Is flag a keyword in c?
string reverse using recursion