what is pointer?

Answer Posted / vijay r15

pointer denotes the address of a variable

*denotes its a ptr var
Ex
Int a; //ordin var
Int *p; //ptr var going to hold sum address
P=&a; //p holds the address of a

With thanks and regards,
Vijay r15

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain argument and its types.

806


A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(

2015


What is unsigned int in c?

757


What the advantages of using Unions?

932


Who developed c language?

866


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2491


Why does not c have an exponentiation operator?

824


What is the difference between strcpy() and memcpy() function in c programming?

867


What is %d used for?

792


Is it better to use malloc() or calloc()?

850


Why c is called procedure oriented language?

812


what is different between auto and local static? why should we use local static?

888


What are the types of bitwise operator?

861


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

1050


What’s the special use of UNIONS?

891