what is pointer?
Answers were Sorted based on User's Feedback
Answer / guest
a pointer is a a variable that contains the address of an
another variable
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / gyanendra
Pointer is used to store address of any variable.
int a,*p;
p=&a//p store address of a
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / j naveen reddy
Pointer is a reference variable, as it refers the address of the other variable
| Is This Answer Correct ? | 0 Yes | 0 No |
code for replace tabs with equivalent number of blanks
What should not contain a header file?
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
which of 'arrays' or 'pointers' are faster?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
What is the use of the restrict keyword?
How. To pass the entrance test
int i=10; printf("%d %d %d", i, i=20, i);
What is #include stdio h and #include conio h?
Explain built-in function?
code for concatination of 2 strings with out using library functions?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.