wt is diference between int and int pointer as same as
float and float pointer and char and char pointer
Answer Posted / shiva
* int Variable Stores a integer Value..
int pointer Stores a address of a integer Variable
* Float Variable Stores a Float Value..
Float pointer Stores a address of a Float Variable
* Char Variable Stores a Single Character
Char Pointer Stores Sequence of Characters
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What do you mean by keywords in c?
What is difference between constant pointer and constant variable?
Explain the use of 'auto' keyword
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is null pointer constant?
how do you execute a c program in unix.
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What is function pointer c?
What are qualifiers?
Explain how can type-insensitive macros be created?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is call by value in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
When is a null pointer used?