Wednesday, June 5, 2019

Write a program to draw a line

/* ***********************************************
    Write a program to draw a line

 date:06-06-2019
 created by:ANIL DURGAM

*****************************************************/

#include <stdio.h>
#include <stdlib.h>

int main()
{
    drawline();
    return 0;
}


int drawline(void)
{
    int i;
    for(i=0;i<80;i++)
    {
        printf("-");

    }


}




No comments:

Post a Comment

python class topic video