C + + memset

Source: Internet
Author: User

Assigning an initial value to an array of pointers:

#include <iostream> #include <cstring>using namespace Std;int main () {int *p = new Int[5];    memset (p,0,5*sizeof (int));    for (int i = 0; i < 5; i + +) {cout << * (P + i) << Endl;    } delete[] P; return 0;}

Memset: Can be understood as Memory Set

First parameter: The address of the array

Second parameter: initial value

Third parameter: Total number of bytes

It is important to note that if you assign a value type to the initial values it can only be 0 or-1

Also need to introduce: CString


To release the array pointer: delete[] P--needs to be added after the delete []

This article is from the "Better_power_wisdom" blog, make sure to keep this source http://aonaufly.blog.51cto.com/3554853/1920742

C + + memset

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.