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 |
Write a routine that prints out a 2-D array in spiral order!
What is maximum size of array in c?
Distinguish between actual and formal arguments.
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
to find the closest pair
write a program to compare 2 numbers without using logical operators?
what is the little endian and big endian?
Where static variables are stored in c?
pascal triangle program
C program to perform stack operation using singly linked list
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
Explain the array representation of a binary tree in C.