LoginSignup
0
1

More than 5 years have passed since last update.

struct,typedef小さなメモ

Posted at

コード

test.c
#include "stdio.h"

struct kure{
        int k;
};

typedef struct {
        int k;
} kures;

int main(int argc, char* argv[])
{
        struct kure kure_ = {10};
        printf("%d", kure_.k);

        kures kure1 = {10};
        printf("%d", kure1.k);

        return 0;
}

実行

# gcc test.c
# ./a.out
1010
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1