How to find the value at an address location in the memory using C pointers??
pav6kor 0 Newbie Poster
Recommended Answers
Jump to PostYou mean something like this?
int x = 123; int* pX = &x; printf("%d\n", *px);
All 2 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.