Ask Question
24 July, 18:29

C+ + Question: what is in the blanks?

code:

int x = 24;

int y;

y = _-12;

cout<<_<
+4

Answers (1)
  1. 24 July, 18:36
    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?
Get an answer to your question ✅ “C+ + Question: what is in the blanks? code: int x = 24; int y; y = _-12; cout ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers