blob: 5e1fee8eb9c9aa5675cf92566d0f3efe5d3f2b6d [file] [log] [blame]
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main ()
{
struct base {
int basic;
};
struct derived {
struct base common;
char extra;
};
struct derived d;
struct base *bp;
bp = (struct base *)&d;
bp->basic = 10;
((struct derived *)bp)->extra = 'x';
return 0;
}