Programs Collections
Write a macro to find smallest from two given numbers.
#include <iostream>
using namespace std;
#define MIN(x,y) (x<y?x:y)
int main() {
int x = 10, y =12, z = 34;
cout<<"Min ="<<MIN(x,MIN(y,z));
return 0;
}
Write a macro to find smallest from two given numbers.
#include <iostream>
using namespace std;
#define MIN(x,y) (x<y?x:y)
int main() {
int x = 10, y =12, z = 34;
cout<<"Min ="<<MIN(x,MIN(y,z));
return 0;
}
Comments
Post a Comment