Introduction
Statistics
Contact
Development
Disclaimer
Help
ftp.icm.edu.pl home page
#include <stddef.h>
#include <stdio.h>
struct x {
unsigned char a;
unsigned char b;
char *c;
char *d;
double e;
};
int main()
{
printf("%u\n",offsetof(struct x,e));
}