#include <stdio.h>

struct starship {
    char * name;
	char * type;
	int numphasers;
	int numphotontorps;
	int crewsize;
};

int main (int argc, char * args[]) {
    const struct starship enterprise = {"Enterprise D", "NCC 1701", 5, 25, 428  };
	printf("Ship's name is %s",enterprise.name);
    return 0;
}