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
What is the use of bitwise operator?
What do you mean by dynamic memory allocation in c?
What is class and object in c?
Why #include is used in c language?
main() { printf("hello"); fork(); }
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Explain how can I remove the trailing spaces from a string?
Write a Program to find whether the given number or string is palindrome.
Can I initialize unions?
What are the advantages and disadvantages of a heap?
Does c have class?
Why do we need volatile in c?
Which is the best website to learn c programming?
Explain zero based addressing.
Why clrscr is used after variable declaration?