what is pointer?
Answers were Sorted based on User's Feedback
Answer / anantha sharma
Pointer is a variable that holds address of a memory location
| Is This Answer Correct ? | 21 Yes | 0 No |
Answer / sumalatha
Pointer is nothing but it addresses the value.
| Is This Answer Correct ? | 25 Yes | 6 No |
Answer / umakant gupta
Pointer is a kind of Array which store the Address of
Variable
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / shekar
a pointer is a variable that stores the address of another
variable. we can a pointer to any variable ..
| Is This Answer Correct ? | 10 Yes | 4 No |
Answer / vijay r15
pointer denotes the address of a variable
*denotes its a ptr var
Ex
Int a; //ordin var
Int *p; //ptr var going to hold sum address
P=&a; //p holds the address of a
With thanks and regards,
Vijay r15
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / beesani
A pointer is a data type whose value refers directly to
another value stored elsewhere in the computer memory using
its address.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / shashikanth
pointer is a variable which can holds the addrese of another object.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / angel
Pointer is a variable.It may contains the memory address of
the another variable and is declared as the pointer.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / ankush tyagi
Pointers are a special type of variables which are used to
store the address of the another variable....
Four type of pointers are defined...
1.Near pointer
2.Fare pointer
3.Huge pointer
4.File pointer
Syntex //-
data type var_name;
data type *pointer_name;
pointer_name=&var_name;
in both the case data type should be same other wise we can
use the type casting;;;....
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rajendiran
pointer is address of the variable and identified the
variable location. if the pointer used to avoid the memory
wastage....
| Is This Answer Correct ? | 2 Yes | 2 No |
What is #include stdio h and #include conio h?
why we are using float in C
How can you increase the size of a statically allocated array?
write a program for the normal snake games find in most of the mobiles.
what is the difference between global variable & static variable declared out side all the function in the file.
How many parameters should a function have?
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
errors in computer programmes are called
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.