Programmer's---C language details 22 (function return pointer considerations < dangling pointer >, view memory size The process can allocate)

Source: Internet
Author: User
Main content: function return pointer considerations < dangling pointer >, viewing the amount of memory the process can allocate

#include <stdio.h> char * favorite_fruit () {static char fruit[] = "Apple";  Without static, the pointer to this function will be dangling, since the fruit group number is destroyed when the function exits                                //Add static after the fruit array is allocated in the data segment instead of the stack. The lifetime is as long as the program, the function exits with the variable//still valid return fruit;} int main () {char *a = favorite_fruit ();p rintf ("%s\n", a);/* * See how much memory your process can allocate  *  Total allocated memory depends on the system configuration of  */int MB = 0; while (malloc (1 <<)) ++kb;  printf ("Allocated%d KB total\n", KB); return 0;}

Output:

watermark/2/text/ahr0cdovl2jsb2cuy3nkbi5uzxqvahvtyw5fzxzvbhv0aw9u/font/5a6l5l2t/fontsize/400/fill/i0jbqkfcma== /dissolve/70/gravity/center ">

Programmer's---C language details 22 (function return pointer considerations &lt; dangling pointer &gt;, view memory size The process can allocate)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.