write a program to dislay the name of five colors with space
Answers
Answered by
4
Answer:
in C language
#include <conio.h>
#include <stdio.h>
void main()
{
clrscr();
printf(" red blue brown white blue ")
getchar();
}
Explanation:
please give name of the language in which you want.
This given program in the top is only in C language.
Similar questions