Input
Output
#include <iostream> using namespace std; int main(){ int i=20; double p; p=i; cout << "Implicit value is " << p << endl; return 0; }