C言語
コメント
code:C
int main(void)
{
/* これでコメントが書ける */
return 0;
}
strcpy関数
code:C
#include
<stdio.h>
#include
<string.h> /* strcpy関数使う時に必要 */
int main(void)
{
char str
10
;
strcpy(str,"MARIO");
printf("%s¥n",str);
return 0;
}