Write a C++ statement to display the following message Covid 19, Break the Chain
Answers
Answered by
8
#include <iostream.h>
int main()
{
cout<<''Covid 19, Break the Chain;
return 0;
}
Answered by
0
Explanation:
C++ is one of the basic computer programming language. It is also one of the old languages that is the base of several others languages that is why it is taught at all levels
A program fulfilling the requirements of the question statement can be written as;
Program
#include <stdio.h>
Int main ( void)
{
cout >> ("Covid 19, Break the Chain")
}
Similar questions