← Back

2. Print Double Quotes in String

Easy

📝 Problem

Print the following output: Success is when your "signature" becomes "autograph"

Input Format:
NA
Output Format:
Success is when your "signature" becomes "autograph"
Constraints:
NA

Examples

Sample Output:
Output:
Success is when your "signature" becomes "autograph"
Solution.cpp
#include <iostream>

using namespace std;

int main() {
    cout << "Success is when your \"signature\" becomes \"autograph\"";
    return 0;
}

// Key learning: "\"" - this is called an escape character.