Rewrite the Hello world example in your Dev-C++ compiler. Include your name, Cla
ID: 3549042 • Letter: R
Question
Rewrite the Hello world example in your Dev-C++ compiler. Include your name, Class, Date and
Assignment Name right at the top before the header files.
/************************/
/***Your Name, Last name***/
/*******CECS 121-01*******/
/**Introductory Assignment**/
/**********Date**********/
/************************/
Note that Failure to do this will reduce your grade.
2- Add your Name, Class, Assignment number and Date to the printf statement, so that your
program shows all these info along with the Hello World sentence.
Explanation / Answer
/***Your Name, Last name***/
/*******CECS 121-01*******/
/**Introductory Assignment**/
/**********Date**********/
/************************/
#include <iostream>
int main()
{
std::cout << "Hello World";
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.