void minMax(int a, int b, int c, int*big, int*small)
{
if(a>b && a >c){
*big = a;
if(b>c)
*small = c;
else
*small = b;
}
else if (b>a && b>c){
*big = b;
if(a>c)
*small = c;
else
*small = a;
}
else{
*big = c;
if(a>b)
*small = b;
else
*small = a;
}
}
1-Input unit
2-output unit
3-storage
4-central processing unit
5-arithmetic and logic unit
Answer:
GUI (Graphic User Interface) Can be used for images whereas CL Focuses on Text Imports
Info:
Here's One Try To Finish It With The Other