nullptr_t - C stddef.h

C examples for stddef.h:nullptr_t

type

data type

From

<cstddef>

Description

Null pointer type (C++)

Prototype

typedef decltype(nullptr) nullptr_t;

Demo Code

#include <stdio.h>
#include <stddef.h>

int main ()//from  www  .  j  a va 2 s  .c o m
{

  nullptr_t p0;


  printf ("%u\n",p0);

  return 0;
}

Related Tutorials