+ 1
Can someone explain exactly wat *ptr is clearly please
1 Antwort
+ 3
it's a pointer.
pointers are really just memory addresses, remember the whole "int x; scanf("%d", &x);"?
well if 'x' is a variable, than '&x' is the memory address where the integer variable is located.
just go alomg with the lessons and do some reading