Answer Posted / gyanendra
Pointer is used to store address of any variable.
int a,*p;
p=&a//p store address of a
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what are its uses in c programming?
What are different types of pointers?
writ a program to compare using strcmp VIVA and viva with its output.
Where static variables are stored in c?
Explain what happens if you free a pointer twice?
Which of these functions is safer to use : fgets(), gets()? Why?
What is the best style for code layout in c?
Explain indirection?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
Define recursion in c.
What is the 'named constructor idiom'?
c language interview questions & answer
Why clrscr is used in c?
What is the significance of c program algorithms?
What is the difference between the expression “++a” and “a++”?