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
Explain argument and its types.
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.. :(
What is unsigned int in c?
What the advantages of using Unions?
Who developed c language?
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.
Why does not c have an exponentiation operator?
What is the difference between strcpy() and memcpy() function in c programming?
What is %d used for?
Is it better to use malloc() or calloc()?
Why c is called procedure oriented language?
what is different between auto and local static? why should we use local static?
What are the types of bitwise operator?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What’s the special use of UNIONS?