Ask Question

C+ + Question: what is in the blanks?

code:

int x = 24;

int y;

y = _-12;

cout<<_<
+2

Answers (1)
  1. 17 June, 20:17
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers