zoukankan      html  css  js  c++  java
  • [C] Struct Test

    #include <stdio.h>
    #include <string.h>
    struct Person
    {
        char name[24];
        char character[30];
        int age;
        struct Birthday
        {
            int day;
            char month[10];
            int year;
        } birthday;
    };
    int main()
    {
        struct Person man1;
        strcpy(man1.name, "Jerry Seinfeld");
        strcpy(man1.character, "fastidious");
        man1.age = 56;
        man1.birthday.day = 4;
        strcpy(man1.birthday.month, "June");// = 6;
        man1.birthday.year = 2020;
        printf("My name is %s, I was born on %s-%d-%d, so I'm %d years old now. And my friends always complain I'm too %s.
    ", 
            man1.name, man1.birthday.month, man1.birthday.day, man1.birthday.year, man1.age, man1.character);
        return 0;
    }

    输出结果为:

    My name is Jerry Seinfeld, I was born on June-4-2020, so I'm 56 years old now. And my friends always complain I'm too fastidious.

    虽然上面的初始化太复杂,但是可以选择性的赋值

    #include <stdio.h>
    struct Person
    {
        char name[24];
        char character[30];
        int age;
        struct Birthday //嵌套一个struct,Birthday也可以删掉,直接写成struct,因为Birthday根本没用到,用的只是birthday
        {
            int day;
            char month[10];
            int year;
        } birthday;
    };
    int main()
    {
        struct Person man1 = {"Jerry Seinfeld", "fastidious", 56, 4, "June", 2020}; //注意对应好,如果缺少,int默认补0, char默认空格
        printf("My name is %s, I was born on %s-%d-%d, so I'm %d years old now. And my friends always complain I'm too %s.
    ", 
            man1.name, man1.birthday.month, man1.birthday.day, man1.birthday.year, man1.age, man1.character);
        return 0;
    }
  • 相关阅读:
    ruby
    Ajax的基本请求/响应模型
    面向GC的Java编程(转)
    linux中fork()函数详解(转)
    详细解析Java中抽象类和接口的区别(转)
    MQ队列堆积太长,消费不过来怎么办(转)
    消息队列软件产品大比拼(转)
    mac地址和ip地址要同时存在么?
    DP刷题记录(持续更新)
    ZR979B. 【十联测 Day 9】唯一睿酱
  • 原文地址:https://www.cnblogs.com/profesor/p/13052614.html
Copyright © 2011-2022 走看看