-
What is the output of this program?
#include <iostream>
using namespace std;
int main ()
{
int num;
num = -25;
cout.width(4);
cout << internal << num << endl;
return 0;
}
-
- 25
- -25
- - 25
- Compilation Error
- None of these
Correct Option: C
In this program, We are using the internal function and moving the 25 to one position.