What are pointers in C?
Answers were Sorted based on User's Feedback
Answer / sagar hande
Pointer is variable that contains memory location of
another variable
| Is This Answer Correct ? | 33 Yes | 0 No |
Answer / mukesh kumar
pointer is variable it contain's or store the address of
other variable.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / tarun gupta
Pointer is a variable. that contain's the M/r location of
another variable.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / esakkimuthu.s.
pointer is a variable which contain the address of another variable.pointer variable must be declare with * operator
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rajgopal
pointer is variable which store the addrss of another variable
| Is This Answer Correct ? | 0 Yes | 0 No |
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
Why static variable is used in c?
Write a code of a general series where the next element is the sum of last k terms.
What would be an example of a structure analogous to structure c?
What is the role of this pointer?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
When is a “switch” statement preferable over an “if” statement?
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
plz let me know how to become a telecom protocol tester. thank you.
what will be maximum number of comparisons when number of elements are given?
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
What are formal parameters?