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.