wt is diference between int and int pointer as same as
float and float pointer and char and char pointer

Answer Posted / jeeva

pointers always stores the address of the variable that it
is referred to....

when it is int pointer it means that the value at the
address that pointer holds is a integer (whole number)....


when it is char pointer it means that the value at the
address that pointer holds is a character....


when it is float pointer it means that the value at the
address that pointer holds is a floating point number....

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a method in c?

628


What kind of structure is a house?

557


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

668


What are the different categories of functions in c?

645


Why do we use stdio h and conio h?

639






What's the total generic pointer type?

614


can any one tel me wt is the question pattern for NIC exam

1558


2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier.  Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed.  When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed.  Sequence of take-off is the sequence of addition to the waitlist

2521


Explain what is the difference between a free-standing and a hosted environment?

635


For what purpose null pointer used?

607


What is equivalent to ++i+++j?

643


How is a macro different from a function?

656


Explain the properties of union.

611


What is main () in c?

588


Can a pointer point to null?

589