Computer Science, asked by bhavyaranjit, 26 days ago

to display
the text "\BOARD EXAM 2021\"​

Answers

Answered by MrTSR
0

Answer

C program to display "BOARD EXAM 2021"

#include<stdio.h>

void main()

{

    clrscr();

    printf( "BOARD EXAM 2021 " );  

    getch();

}

OUTPUT

BOARD EXAM 2021

Attachments:
Similar questions