.
what is the output of this code? #include <iostream> using namespace std; int main () { int n = 10; while (n>0) { cout << n << ", "; --n; } }
#include <iostream> int main() { cout << "Hello World!"; } output of this code is hello world
#include<iostream> using namespace std; int x = 5; int &f() { return x; } main() { f() = 10; cout<<x; }