#include <iostream.h> #include <conio.h> void main() { clrscr(); int largest(int,int,int); cout<<"Enter 3 Integer Numbers\n"; int a,b,c; cin>>a>>b>>c; int result; result=largest(a,b,c); cout<<"\n\nLargest Value of Inputed is "<<result; getch(); } inline largest(int a,int b,int c) { int z; z=(a>b)?((a>c)?a:c):((b>c)?b:c); return(z); }
Chat with our AI personalities
There is no such unit as "macro second".
Macro
major
In the context of a macro or program, the values of the arguments of the function (variables) are substituted into the function and it is evaluated. The result is returned.
A macrosecond is a unit of time equal to one millionth of a second, or 10^-6 seconds. It is commonly used in scientific and technical fields where very precise measurements of time are necessary. In comparison, a microsecond is one thousand times shorter than a millisecond, and a macrosecond is one thousand times shorter than a microsecond.