#include <iostream.h>
#include<conio.h>
inline int exforsys(int x1)
{
return 5*x1;
}
void main( )
{
int x;
cout << “\n Enter the Input Value: ”;
cin>>x;
//The exforsys(x) gets replaced with code return 5*x1;
//Call is made to the function exforsys
cout<<”\n The Output is: “ << exforsys(x);
getche();
No comments:
Post a Comment