Answer Posted / vignesh1988i
pointer is a secondary constant and a derived data type which can hold a address or point to a particular memory location (LOGICALLY) of the same data type in which pointer variable has been declared......
syntax :
(data type) *variable_name;
integer pointer can hold only integer variable address
character pointer can hold only character variable address
floating pointer can hold only float variable address
thank u
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is c pass by value or reference?
What are the types of c language?
Write a C program in Fibonacci series.
How are 16- and 32-bit numbers stored?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Can a pointer point to null?
Process by which one bit pattern in to another by bit wise operation is?
What are two dimensional arrays alternatively called as?
What is calloc in c?
What is a method in c?
What is the size of structure in c?
define string ?
What is the value of uninitialized variable in c?
Which is the best website to learn c programming?
explain what is a newline escape sequence?