|
빌더에서요 C언어로 다음과 같이 짜구요
run 을 시켰더니 결과가 제 눈에 안보이네요
제 눈에 보이게 하려면 어떻게 하나요??
C언어 공부할때는 getch()로 하믄 됐는데....이건안되네요
갈켜주세요
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
int i;
randomize();
printf("Ten random numbers from 0 to 99\n\n");
for(i=0; i<10; i++)
printf("%d\n", rand() % 100);
return 0;
}
|