what is the difference between normal variables and pointer
variables..............
Answer Posted / fatima javaid
"Pointer variable holds memory address or physical address
of any variable value means it indirectly points any
vaiable,we can perform all operations +,*,-,and / through
it but normal variable directly points vaiable value"
| Is This Answer Correct ? | 21 Yes | 5 No |
Post New Answer View All Answers
Explain the priority queues?
write a program to display all prime numbers
What is a pointer value and address in c?
How many parameters should a function have?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
what does static variable mean?
What are the features of c languages?
Can you assign a different address to an array tag?
What does the file stdio.h contain?
I have a varargs function which accepts a float parameter?
what are # pragma staments?
What is array within structure?
Explain logical errors? Compare with syntax errors.