Horje
How to define Max in define in c Code Example
How to define Max in define in c
// For defining x > y
#define MAX(X, Y) (((X) > (Y)) ? (X) : (Y))
// For defining x < y
#define MIN(X, Y) (((X) < (Y)) ? (X) : (Y))




C

Related
c bit access struct Code Example c bit access struct Code Example
arduino knn Code Example arduino knn Code Example
%d in c Code Example %d in c Code Example
c fractional sleep Code Example c fractional sleep Code Example
measure time in c Code Example measure time in c Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7