NULL - C stdlib.h

C examples for stdlib.h:NULL

Type

macro

From

<cstddef>
<cstdlib>
<cstring>
<cwchar>
<ctime>
<clocale>
<cstdio>

Description

Null pointer

Demo Code

#include <stdio.h>
#include <stdlib.h>

int main()/*from w  w  w . j ava  2  s .  c  o  m*/
{
  printf("%d",NULL);

  return 0;
}

Related Tutorials