NULL - C time.h

C examples for time.h:NULL

Type

macro

from

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

Description

Null pointer

Demo Code


#include <stdio.h>
#include <time.h>

int main ()/* w  ww.j  a  va 2 s.  c om*/
{
  printf ("%d\n", NULL);

  return 0;
}

Related Tutorials