6de9cd9a88
From-SVN: r81764
24 lines
289 B
C
24 lines
289 B
C
#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;
|
|
}
|