Possible Duplicate:
Is there a convenient function in objective-c / coca-touch to find a lowest number?
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int a=10,b=5,c;
c=min(a,b);
NSLog(@"min:%d",c);
[pool drain];
return 0;
}
I have to calculate the minimum value of two numbers. We can use if(a>b) to find out the minimum value.But is there any predefined function to calculate the minimum of two numbers.
There was already a discussion about this here. Objective-C includes a MIN(a,b) macro, which should suit your needs.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With