2008-04-23から1日間の記事一覧

外交上の発言?

吉野家向け輸入牛肉に危険部位混入 産経新聞より 米国大使館は「日本向けでない肉が入ってしまった」と回答しているという。同省は、出荷・輸入の際のミスとみている。 「日本でないところには危険部位を輸出できる」 いわゆる危険部位は日本国内だけの話? …

C言語

構造体 #include <stdio.h> struct student{ char *name; int age; }; struct student makeSt(char *, int); void func(struct student); int main(void){ struct student taro; taro = makeSt("Taro", 30); func(taro); return 0; } void func(struct student boys){</stdio.h>…