NULL - C wchar.h

C examples for wchar.h:NULL

Type

macro

From

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

Description

Null pointer

Demo Code


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

int main() {// www.j a va2  s  .c  o  m
  printf("%d",NULL);
  return 0;
}

Related Tutorials