検索結果 4 件

by ubuntuooo
12年前
フォーラム: C言語何でも質問掲示板
トピック: about the "C struct pointer"
返信数: 6
閲覧数: 3056

Re: about the "C struct pointer"

わかりました。ソース全体として確認します。
ありがとうございます。
by ubuntuooo
12年前
フォーラム: C言語何でも質問掲示板
トピック: about the "C struct pointer"
返信数: 6
閲覧数: 3056

Re: about the "C struct pointer"

[quote="usao"]事態が不明瞭です.
まず,そのコードはどこから出てきたものなのでしょうか?
ごめん、あるシステムソースです。
セキュリティの原因で明確的に載せてはいけません。。。
by ubuntuooo
12年前
フォーラム: C言語何でも質問掲示板
トピック: about the "C struct pointer"
返信数: 6
閲覧数: 3056

Re: about the "C struct pointer"

★付いている箇所は 初期化処理でしょうか?
初期化処理であればどういうことでしょうか?
いろいろ探しましたが、理解できませんでした。TT
by ubuntuooo
12年前
フォーラム: C言語何でも質問掲示板
トピック: about the "C struct pointer"
返信数: 6
閲覧数: 3056

about the "C struct pointer"

皆さん、こんにちは!

下記のように構造体ポインターの初期化についてご教授お願いしたいです。

コード:

struct s_time{
  short year;
  char month;
  char day;
};

void main(){

  struct s_time *p_time;
  p_time = &s_time; ★??
......
}

詳細検索ページへ移動する