简单的用C语言编写的《黑客帝国》装逼程序

#include 
#include 
#include 

int main() {
    char string[25];
    srand((unsigned) time(NULL));

    for (int i = 1;; ++i)
        {
            int number = rand() % (9 - 0 + 1) + 0;
            itoa(number, string, 2);
            printf("%s", string);
        }   
    
    return(0);
}

简单的用C语言编写的《黑客帝国》装逼程序_第1张图片
 
  
 
 

你可能感兴趣的:(简单的用C语言编写的《黑客帝国》装逼程序)