← Back to Question List
C++ Quiz #66
setprecision with fixed
What is the output of the following code?
``cpp
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
cout << fixed << setprecision(2) << 3.14159;
}
``