Search:

Type: Posts; User: jazy921

Search: Search took 0.01 seconds.

  1. Thread: Drawing lines

    by jazy921
    Replies
    2
    Views
    1,596

    ASCII characters for drawing animated line

    drawing animated lines:
    -----------------------------------------------------------------------------------
    #include<stdio.h>

    main()
    {
    clrscr();
    for(a=1;a<25;a++)
    {
    gotoxy(1,a);
  2. Replies
    3
    Views
    3,856

    Clear Screen = clrscr();

    just use clrscr();

    Like so:
    ----------------------------------------------------------------------------------
    #include<stdio.h>

    main()
    {
    clrscr();
    printf("Hello World!");
  3. Thread: My Memory Game

    by jazy921
    Replies
    0
    Views
    17,493

    My Memory Game

    I'm studied and learned C-Language on my own. This is a memory game I created. Copy and paste it to Notepad and save as <filename>.c then open it with Turbo C. Enjoy!...
Results 1 to 3 of 3