Answer Posted / esakkimuthu.s.
pointer is a variable which contain the address of another variable.pointer variable must be declare with * operator
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is null pointer in c?
What are the 5 types of organizational structures?
Why is c called c?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Explain what is the benefit of using const for declaring constants?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is sizeof array?
Describe the header file and its usage in c programming?
What are c header files?
What is a double c?
praagnovation
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is a static function in c?
What are the features of c language?
When would you use a pointer to a function?