Created
April 1, 2019 18:56
-
-
Save JaeDukSeo/780ab27b32238fc0cbe3d56e30334c24 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
/* the planets structure */ | |
typedef struct | |
{ | |
char name [10]; | |
double diameter; | |
int moons; | |
double orbit, rotation; | |
} planets_t; | |
/* the solar systems structure contains a planets type element */ | |
typedef struct | |
{ | |
double diameter; | |
planets_t the_planets[8]; | |
char galaxy [10]; | |
} solar_systems_t; | |
struct shape | |
{ | |
float line; | |
float radius; | |
}; | |
int | |
main(void) | |
{ | |
struct shape planets ; | |
planets.line = 2.0; | |
planets.radius = 2.0; | |
printf("Line is : %lf\n",planets.line); | |
printf("Radius is : %lf\n",planets.radius); | |
planets_t planet = {"Earth", 1000, 1, 1.0, 24.0}; | |
solar_systems_t solarsystem; | |
printf ("The planet %s has %d moon(s).\n", planet.name, planet.moons); | |
solarsystem.the_planets[2] = planet; | |
strcpy(planet.name, "Jupiter"); | |
planet.diameter = 142980; | |
planet.moons = 16; | |
planet.orbit = 11.9; | |
planet.rotation = 9.925; | |
printf ("Planet %s has %d moon(s).\n", planet.name, planet.moons); | |
printf ("Planet %s has %d moon(s).\n", solarsystem.the_planets[2].name, | |
solarsystem.the_planets[2].moons); | |
return(0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define NL 20
typedef struct tree
{
char tree_name [NL];
struct tree* next;
}tree;
int
main (void)
{
/* temporary hold for tree name */
char name[NL];
p = (tree *) calloc (1, sizeof(tree));
strcpy (p -> tree_name, name);
p -> tree_name[strlen(name)-1] = '\0';
}