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 gets() function?
what is the difference between 123 and 0123 in c?
What are integer variable, floating-point variable and character variable?
What is keyword with example?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Write a c program to build a heap method using Pointer to function and pointer to structure ?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
Write a program on swapping (100, 50)
Is c programming hard?
Does * p ++ increment p or what it points to?
What is a nested loop?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
How variables are declared in c?
Why C language is a procedural language?
What is a floating point in c?