>>827
ちょっとコメントする時間がないんで、自分好みに書き換えてみた。
比べてみ。

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <conio.h>

void main( void )
{
  int random,answer;

  srand((unsigned int)time(NULL));
  random=rand()%100;

  printf("数当てゲームを開始します。\n");