10 lines
138 B
C
10 lines
138 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
int Ergebnis;
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
Ergebnis = rand ();
|
||
|
|
printf("Variable = %05d\n", Ergebnis);
|
||
|
|
return(0);
|
||
|
|
}
|