#Meta-Wlp: #Macro: TITLE wlp: Learn C (5) p. 2 #Eval: $TITLE$ #Macro: PAGE bb5-2

Let's begin about structures

#include<stdio.h>

int main(int argc, char * argv) {
  struct { 
    char * first ; 
    char * last ; } name ;
  name.first = "dylan" ;
  name.last = "thomas" ;
  printf ("%s %s\n", name.first, name.last ) ;
}
What does this program print? #Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Introduction #: It prints out the name of some guy who liked Bob Dylan. #: It prints the name of my neighbor. #: It prints the name of a famous Welsh poet. #: