Question #39318

First Program in C++: Printing a Line of Text is an example of a “text printing program.” Use this example and instructions, but change the text to be an output. Add the following text:

Name: kandy jenkins
Course Name: inf 231 programming concepts
Famous Quote: what happens to a dream deferred? does it dry up like a raisin in the sun?

***Note: Make sure you put in your name, the course you are in, and a famous quote you like.
Compile the program; include the source and compiled code as attachments and submit by

Expert's answer

#include <stdio.h>
int main() {
    printf("Name: Kandy Jenkins;\nCourse Name: Inf 231 programming concepts;\nFamous Quote:\nWhat happens to a dream deferred? Does it dry up like a raisin in the sun?\n");
    return 0;
}
LATEST TUTORIALS
APPROVED BY CLIENTS