Questions tagged «dangling-pointer»

20
දේශීය විචල්‍යයක මතකය එහි විෂය පථයෙන් පිටත ප්‍රවේශ විය හැකිද?
මට පහත කේතය ඇත. #include <iostream> int * foo() { int a = 5; return &a; } int main() { int* p = foo(); std::cout << *p; *p = 8; std::cout << *p; } කේතය කිසිදු ධාවන කාල ව්‍යතිරේකයකින් තොරව ක්‍රියාත්මක වේ! නිමැවුම විය 58 එය විය හැක්කේ කෙසේද? දේශීය …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.