위에서 알파벳이 바뀌면서 내려옴. #include
}Point; typedef struct Signal{ char ch; Point pos; int exist; int speed; }Signal; void gotoyx(int y, int x); void Show(int flag); void move(); Signal s[100]; int cnt=0; int p;//발생확률 void main() { srand(time(NULL)); gotoyx(18,0); printf("==============================================================================="); while(1) { p=rand()%3; //발생확률 if(p...
원문 링크 : c언어 matrix