{}
run-icon
main.cpp
#include <iostream> using namespace std; int square(int x) { return x * x; } int main() { int n = 25; cout << "Square of no. : " << square(n) << endl; return 0; }
Output