Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #31.8K
3 Posted Topics
Re: dangling pointer
[CODE]int * first(){ int f_lcl = 0xAAAA ; printf(" In First : value of f_lcl ( %x ) \n", f_lcl); printf(" In First : addr of f_lcl is ( %p ) \n", (void*)&f_lcl); return &f_lcl ;}[/CODE] the warning:returning address of temporary. if the temporary out of scope, it can be …
although this thread has been marked solved, but I want to tell some of my ideas, hope it can be help to u. We can suppose a pane which is as long as the pattern. first, the pointer of the pane and the file are the same, so we can …
The End.
Tajon Wong