This error appears due to incorrect assignment to pointer and pointer tries to access illegal memory location. ...
Yes, a simple exp is the link list. ...
Link list is implemented as a structure (data, link *), How is pointer moved to the next node, cursor points to the present node.
A. cursor == cursor->link
B. cursor ++
C. ++ cursor
D. none of these
In the following code;
#include
main()
{
FILE *fp;
fp= fopen("trial","r");
}
fp points to:
a) The first character in the file.
b) A structure which contains a "char" pointer which points to the first character in the file.
c) The name of the file. d) None of the above.
Skill/Topic: ArrayA) by using the address operator, which is the ampersand (&), in an assignment statementB) by using the address operator, which is the asterisks (*), in an assignment statementC) by
sayint * ptoia[10];int a=10;so we can writeptoia[0]=&a;.... and so on,. ...
pointer to the array is the base address or the location of the first element of the array while the array to the pointers is the storage for the saving of the pointers in the array. ...
Dangling pointer is a pointer which is pointing to the destroyed object or which does not have proper address. A pointer should be intialized to zero once it is freed after allocating memory to that pointer. Ex: main() { ...
cursor is basically a pointer as it's like a address of virtual memory which is being used storage related to sql query & is made free after the values from this memory is being used. ...
Dangling pointers and wild pointers in computer programming are pointers that do not point to a valid object of the appropriate type, or to a distinguished null pointer value in languages which support this. Dangling pointers arise when an object is deleted ...
Fake pointer is used to create a illusion or virtual functionality of pointer which is used to mutate the objects where single objects have multiple functionality at same time.Please confirm , i just guess ...
View page << Previous 4 5 6 7 [8] 9 10 11 Next >>

Go Top