#include <stdio.h>

int main() {
        
    typedef struct {
        char zOne[5];
        char zTwo[7];
    } MyStruct;
    
    MyStruct t = { "Hello" , " World" };
    
    puts( t.zOne );
    
    
    /*
    static void* pTgt[] = {&&one,&&two,&&three};
    goto *pTgt[1];
    
    one:    
        puts("ONE!");
        goto done;
    two:    
        puts("TWO!");
        goto done;
    three:    
        puts("THREE!");
        goto done;
    
    done:
    */
    
    getchar();
}
