Hey guys i am trying to create a table like structure in c language using box generating symbol of unicode but right side is not symmetrical like a left one what should i do, is there any trick or function for fix this...
This is the code
#include <stdio.h>
int main()
{
int R=89;
printf("\n┏");
for(int i=0;i<42;i++)
{
printf("━");
}
printf("┓\n");
printf("┃ SUBJECT ┃
MAX/MIN ┃ TERM 1 ┃ TERM
2 ┃ TERM 3 ┃");
printf("\n┃");
for(int i=0;i<42;i++)
{
printf("━");
}
printf("┃\n");
printf("┃ ENGLISH ┃
100/33 ┃ %3d ┃ %3d
┃ %3d ┃",R,R,R);
printf("\n┃");
for(int i=0;i<42;i++)
{
printf("━");
}
printf("┃");
}
This is a output image: