what is the difference between normal variables and pointer
variables..............
Answer Posted / ashu_deepu
one thing i wanna add is we canot perform some operation
with the pointers (like subtraction) while those can b
performed with the normal variables.
| Is This Answer Correct ? | 15 Yes | 12 No |
Post New Answer View All Answers
When should you not use a type cast?
Why doesn't C support function overloading?
Explain the concept and use of type void.
What are the different types of pointers used in c language?
Place the #include statement must be written in the program?
Why is a semicolon (;) put at the end of every program statement?
What is the purpose of void in c?
explain what are pointers?
Linked lists -- can you tell me how to check whether a linked list is circular?
What is the meaning of && in c?
How to write a multi-statement macro?
How can you return multiple values from a function?
What do mean by network ?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is the best way to store flag values in a program?