Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <curses.h>
- #include <string.h>
- int main()
- {
- int loopnum = 1;
- int dubloop = 1;
- int y = 1;
- int x = 2;
- for(;dubloop <=20;){
- dubloop++;
- for(;loopnum <= 20;){
- initscr();
- mvaddch(y,x,'f');
- refresh();
- x++;
- loopnum++;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement