Mephistophelés
Bronz Üye
-
- Katılım
- Eylül 10, 2012
-
- Mesajlar
- 3,744
-
- Tepkime puanı
- 2
-
- Puanları
- 293
-
- Yaş
- 48
Kod:
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<time.h>
int main ()
{
int x;
srand(time(NULL));
x=rand()%100;
printf("%d",x);
getch ();
}