Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

predefined function for minimum [duplicate]

Tags:

objective-c

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.

like image 656
spandana Avatar asked Jun 07 '11 11:06

spandana


1 Answers

There was already a discussion about this here. Objective-C includes a MIN(a,b) macro, which should suit your needs.

like image 125
goetz Avatar answered Nov 03 '22 07:11

goetz