#include <stdio.h>

void print_line(void);

int main(void)
{
    print_line();
    printf("학번    이름      전공      학점\n");
    print_line();

    return 0;
}

void print_line(void)
{
    int i;

    for (i = 0; i < 50; i++)
        {
            printf("-");
            
        }
    printf("\n");
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: