Friday 10 May 2019

function passing value

#include <iostream>
using namespace std;
int kkk(int a,int b);
int main()
{
int i,j;
i=kkk(99,80);
cout <<"\nvalue of i .................>"<<i;




cout << "\n value of iiiiiiiiiiiiii  "<< i;

return 0;


}
int kkk(int a,int b)
{cout <<"kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk\n"<<a<<"  value of b   "<<b;

return a+b;
}

No comments:

Post a Comment

Directory implementation

The selection of directory-allocation and directory-management algorithms significantly affects the efficiency, performance, and reliabil...