mixiで趣味の話をしよう

mixiコミュニティには270万を超える趣味コミュニティがあるよ
ログインもしくは登録をして同じ趣味の人と出会おう♪

条件変更

すべての検索結果:36

検索条件:タイトルと本文+更新順

C言語(ソース議論をベースに)トピック

C言語(ソース議論をベースに)のトピック

トランプをシャッフル

SUZI 13 typedef struct { int id; // 52枚のカードの通し番号 int suit_code

  • 2014年12月18日 22:42
  • 492人が参加中
  • 2

C言語(ソース議論をベースに)トピック

C言語(ソース議論をベースに)のトピック

お力をおかしくださいm(__)m

typedef struct { int id; /*52枚のカードの通し番号 int suit_code; /*スー

  • 2014年01月17日 17:41
  • 492人が参加中
  • 2

C言語とC++言語トピック

C言語とC++言語のトピック

経過日数とカレンダー

#include "stdafx.h" typedef struct{ int y; int m; int d

  • 2011年06月09日 16:31
  • 13129人が参加中
  • 16

初心者の為のC言語トピック

初心者の為のC言語のトピック

経過日数とカレンダーについて

#include "stdafx.h" typedef struct{ int y; int m; int d

  • 2011年06月06日 19:19
  • 2177人が参加中

C言語とC++言語トピック

C言語とC++言語のトピック

関数ポインタと構造体の複合について。C

:list*/ union{ List *pl;ary *pa; } ds; } st; typedef struct st 只今学校のほうでこのような構造体を使い リスト型と配列型のstackを作れという問題が出されています. typedef

  • 2010年07月23日 00:52
  • 13129人が参加中
  • 19

Javaトピック

Javaのトピック

Java を使うためには構造言語から学ぶと早い?

勉強していると、Java が分かりやすくなるような気がします。 例、 #include #include typedef struct Point *Point; struct Point { int x; int y; }; static void

  • 2010年04月10日 01:52
  • 12811人が参加中
  • 204

C言語とC++言語トピック

C言語とC++言語のトピック

memcpyでうまく構造体がコピーできない

C言語でmemcpy()の使用でつまずいています。 おおざっぱに書くと typedef struct kouzouA_ { doublel d; struct kouzouA_ *next; } kouzouA; typedef struct

  • 2010年02月10日 19:52
  • 13129人が参加中
  • 3

C言語とC++言語トピック

C言語とC++言語のトピック

住所録

// 終了 }; typedef struct _tagAddrRecord { char name[NAME_LEN ]; char email[EMAIL_LEN]; } AddrRecord; typedef struct

  • 2008年09月12日 14:55
  • 13129人が参加中
  • 69

社情の絆〜情報処理編〜トピック

社情の絆〜情報処理編〜のトピック

<解答>課題8

しては特に何もしていません。 -- #include #include typedef struct{ double real, imag; } complex

  • 2008年07月15日 10:19
  • 9人が参加中

C言語とC++言語トピック

C言語とC++言語のトピック

C言語、構造体のメンバ名をインクリメント

方法が見つかりません。 typedef struct st{  char data01[5];  char data02[8];  char data03[3

  • 2008年06月08日 16:54
  • 13129人が参加中
  • 6

C言語とC++言語トピック

C言語とC++言語のトピック

動的領域の確保について教えてください

でして質問の仕方もわかりませんがよろしくお願いします。 #include typedef struct { char name[41]; char math[4]; char english[4

  • 2008年04月25日 18:02
  • 13129人が参加中
  • 15

C言語とC++言語トピック

C言語とC++言語のトピック

関数のアドレス渡しについて教えてください

#include #include typedef struct A{ struct A *next; } A

  • 2008年01月12日 21:21
  • 13129人が参加中
  • 4

C言語とC++言語トピック

C言語とC++言語のトピック

ハッシュテーブルについて

#include #include typedef struct PERSON{ char name[30 ]; struct PERSON *next; }PERSON; int hash(char n); int main(void

  • 2007年11月14日 01:23
  • 13129人が参加中
  • 11

C言語とC++言語トピック

C言語とC++言語のトピック

単方向リストについて教えてください。

#include #include typedef struct PERSON{ char name[30 ]; struct PERSON *next; }PERSON; PERSON *add(PERSON *node,int *count

  • 2007年10月16日 23:10
  • 13129人が参加中
  • 15

CとC++トピック

CとC++のトピック

教えてくださいm(_ _"m)ペコリ

(_ _"m)ペコリ #include #include #include typedef struct number { float x; struct number *next; }Num; void append_list(Num **s,float

  • 2007年07月16日 12:23
  • 832人が参加中
  • 12

C言語とC++言語トピック

C言語とC++言語のトピック

大学の課題なんです。。。

; /* 右の子供へのポインタ */ }; typedef struct RECORD rec; int GenData(rec **top #include #include struct RECORD{ char *name; /* 氏名

  • 2006年12月07日 01:25
  • 13129人が参加中
  • 46

CとC++トピック

CとC++のトピック

エラーの解決方法がわかりません。

#include typedef struct _KABUKA { int Value; struct _KABUKA* pNext ; }KABUKA; typedef struct _KABU_DATA { int Code; char Name[128

  • 2006年11月08日 22:37
  • 832人が参加中
  • 6

パソコンPaPa夜間部トピック

パソコンPaPa夜間部のトピック

プログラミング的なトピック2(システムファイル)

グラムをそのときの状態のまま 再開したいときの方法についてですが、 以下のようなファイルを作っていたとします。 typedef struct {    int a; }SPerson; typedef struct {    int b; }SSystemData

  • 2006年09月15日 01:23
  • 6人が参加中
  • 2

【般若心経♡般若倶楽部】トピック

【般若心経♡般若倶楽部】のトピック

プログラマの「般若心経」 (@_@)(?_?)

, switch, struct, typedef, while    も必要ない. 無眼界乃至無意識界    autoからwhileに至

  • 2006年09月09日 05:43
  • 145人が参加中
  • 1

弾幕つくろうぜ!トピック

弾幕つくろうぜ!のトピック

基本パターンその2

率を定義 #define PI 3.141592 //構造体定義 typedef struct{       float x, y; //座標       float vx, vy; //加速度       float ang; //角度 }BULLET; typedef

  • 2006年07月29日 21:51
  • 7人が参加中
  • 3

C言語とC++言語トピック

C言語とC++言語のトピック

わかる方、お願いします。

(YSIZE_MAX)512 #define (GMAX)255 typedef struct COLOR { int r; int g

  • 2006年07月28日 12:23
  • 13129人が参加中
  • 7

C言語とC++言語トピック

C言語とC++言語のトピック

教えてください。。・゚・(ノд`)・゚・。

#include #include typedef struct point{ double x; double y

  • 2006年06月20日 00:21
  • 13129人が参加中
  • 23

C言語(ソース議論をベースに)トピック

C言語(ソース議論をベースに)のトピック

returnとexitの違い

typedef struct __node { char data[1]; struct __node *next; }Node

  • 2006年04月25日 02:15
  • 492人が参加中
  • 19

初心者用プログラミング手動検索トピック

初心者用プログラミング手動検索のトピック

テキストファイルを1画面ずつ表示

);      return (p); } /*  * line.h - リスト構造用の定義  */ typedef struct line_t {   struct line_t *prev; /* 前のノードへのポインター */   struct line_t *next; /* 後の

  • 2005年09月26日 15:24
  • 218人が参加中
  • 1

C言語とC++言語トピック

C言語とC++言語のトピック

教えてください(双方向リスト)

のコードに関してです *prevは前の要素へのポインター *nextは後ろの要素へのポインター typedef struct list_t {   char line[256];   struct list_t *prev;   struct list_t *next; } LIST

  • 2005年08月28日 23:52
  • 13129人が参加中
  • 27

BREW開発者トピック

BREW開発者のトピック

ブラウザとの連動について

るためにブラウザを起動する部分があるのですが W21Kだけが、なぜかうごいてくれません。 typedef struct _ShimBrowserInfo { uint32

  • 2005年02月26日 14:28
  • 254人が参加中
  • 3