что должна выдавать эта программа? пример из MSDN к функции rand(): [code language="C#"] // crt_rand.c // This program seeds the random-number generator // with the time, then displays 10 random integers. // #include <stdlib.h> #include <stdio.h> #include <time.h> int main( void ) ...