What is the function of this pointer?
Answer / Akash Avasthini
"In C, 'this' is a special pointer that represents the address of the object for which a non-static member function is called. It allows you to access other members and functions of the object."
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the application of c?
Why is c called c not d or e?
What is pointers in c?
define string ?
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
Write a program to reverse a given number in c language?
What are pointers in C? Give an example where to illustrate their significance.
Can a pointer be static?
What is the usage of the pointer in c?
main() { printf("hello%d",print("QUARK test?")); }
What is stack in c?