#include<iostream>
using namespace std;
int printMe(int a)
{
a=a*a;
}
int main()
{
int capture;
capture=printMe(5);
cout<<capture;
return 0;
}
How am i getting 25 as value printed without the return value from printMe function?? can anyone Please explain if anything missed