learnprogramming123

LEARN PROGRAMMING 123
your resources to programming and free tutition



Navigation

 
C
 
C++ soon here!
VB - soon here!

Search

 

 

Next Back

<stddef.h>        -        Common definitions

The header provides definitions of frequently used types and macros. A partial listing of the header illustrated sefinitions for the type ptrdiff_t, size_t and macros offsetof and NULL.

typedef int ptrdiff_t;
typedef unsigned size_t;
typedef insigned char wchar_t;
#define offsetof(st, member) (size_t) (&((st*)0) -> member)
#define NULL 0
 

 

go to <stdio.h>     back to top        back to main