what is a pointer
Answers were Sorted based on User's Feedback
Answer / chaitali anand tendulkar
A pointer is a variable which contains a address in memory
of another variable. in other words it is a address of
variable.
Is This Answer Correct ? | 27 Yes | 2 No |
Answer / roshan
In a simple word.....
A pointer is a variable which is store the address of another variable.
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / anil yadav
A pointer is a variable which contains the address in memory of another variable. We can have a pointer to any variable type....
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / joshi
Pointer is a special variable which hold the address of the
next variable.
Is This Answer Correct ? | 3 Yes | 2 No |
What are the 5 data types?
Write a program to print prime nums from 1-20 using c programing?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
What is the use of typedef in c?
What is the difference between NULL and NUL?
Concat two string with most overlapped substring has to remove "abcd"+ "cdef" = "abcdef
How can I make a program in c to print 'Hello' without using semicolon in the code?
9 Answers C DAC, Practical Viva Questions,
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
What are the types of macro formats?
What does 4d mean in c?
How do you write a program which produces its own source code as output?