NULL - C stdio.h

C examples for stdio.h:NULL

Type

macro

From

<cstddef>
<cstdlib>
<cstring>
<cwchar>
<ctime>
<clocale>
<cstdio>
stdio.h

Description

Null pointer value

Demo Code

#include <stdio.h>

int main()// ww  w . j ava2s.  c  om
{

  printf ("%u ",NULL );
  return 0;
}

Related Tutorials