how is "M" different to 'M' in C language?
Answers
Answered by
0
Answer:
m is normal variable while *m is pointer variable. Pointer variable is a variable that can address of another variable.. Ex: int a=10,*p; p=&a; Then p contains a address, *p return a value 10. Read about pointers in C.
Similar questions