Write a short program that contains statements to output the values of a variable that you define but neither initialize nor assign. Discuss the output you get.

What will be an ideal response?

```
#include
using namespace std;
int main()
{
int uninitialized;
cout << uninitialized << endl;
return 0;
}
```

Computer Science & Information Technology

You might also like to view...

The edge of the Windows 8 screen is called the ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

The ________ ________ dialog box is used to enter the required number of rows and columns when creating a table

Fill in the blank(s) with correct word

Computer Science & Information Technology