Computer Science, asked by akhilashok042, 15 days ago

Write a C++ statement to display the following message Covid 19, Break the Chain​

Answers

Answered by classyocean143
8

#include <iostream.h>

int main()

{

cout<<''Covid 19, Break the Chain;

return 0;

}

Answered by nidaeamann
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