wt is diference between int and int pointer as same as
float and float pointer and char and char pointer
Answer Posted / ravikumar
int gives the value of the integer but int pointer gives
address of the integer value
| Is This Answer Correct ? | 38 Yes | 2 No |
Post New Answer View All Answers
What is a dynamic array in c?
what is uses of .net
Why is c called c?
What are register variables in c?
Can we use any name in place of argv and argc as command line arguments?
Explain how do you print only part of a string?
What is the most efficient way to store flag values?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Are the expressions * ptr ++ and ++ * ptr same?
What is the concatenation operator?
Why clrscr is used in c?
Is c++ based on c?
How are structure passing and returning implemented?