The significance of null in VC ++ and dynamic allocation of two-dimensional arrays!

Source: Internet
Author: User
Tags define null
In the past, it was always unclear to assign null values to a pointer.

Int * P = new int [1]; P = NULL;

In fact, the system has pre-set a value 0 to null.

# Define null 0

In this way, P is equal to 0.

In addition, the previous phase made some learning on the pointer, with some knowledge. The best example of this learning is to dynamically create two-dimensional arrays:

Int n, m;

Cout <"Enter the value of N, M :";

Cin> N;

Cin> m;

Cout <Endl;

Int ** T = new int * [N];

For (INT I = 0; I <n; I ++)

{

T [I] = new int [m];

}

For (I = 0; I <n; I ++)

{

For (Int J = 0; j <m; j ++)

{T [I] [J] = 2;

Cout <t [I] [J];}

Cout <Endl;

}

I think the basic knowledge of C ++ is very poor, so now I have to make up for it! Alas ~~~~~~~~~~~~~~~

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.