NULL - C locale.h

C examples for locale.h:NULL

type

macro

From


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

Description

Null pointer

Demo Code

#include <stdio.h>
#include <locale.h>

int main ()/*from w ww .  java2s.co  m*/
{
  printf ("%d\n", NULL);
  return 0;
}

Related Tutorials