Zouhair Grirzouhairgr-blog.hashnode.devยทOct 17, 2024Important Details to Understand About C Languagemultiple pointers can point on the same memory location #include <stdlib.h> int main(){ int *pt1 = malloc(sizeof(int)); if(pt1 == NULL){ return(1); } *pt1 = 42; int *pt2 = pt1; // point pt2 to the s...C++Add a thoughtful commentNo comments yetBe the first to start the conversation.