Ask Question
24 December, 23:26

C+ + Question: what is in the blanks?

code:

int x = 24;

int y;

y = _-12;

cout<<_<
+2

Answers (1)
  1. 25 December, 02:58
    0
    You didn't specify what the program should output, so there are many possibilities that result in a working program. It * looks * like this was intended:

    int x = 24;

    int y;

    y = x-12;

    cout<
    and it will display 12.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “C+ + Question: what is in the blanks? code: int x = 24; int y; y = _-12; cout ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers