/* * ===================================================================================== * * Filename: A.h * * Description: * * Version: 1.0 * Created: 03/02/24 10:48:50 AM IST * Revision: none * Compiler: gcc * * Author: YOUR NAME (), * Organization: * * ===================================================================================== */ #ifndef __A__ #define __A__ #define max(a,b) (a > b? a : b) int sum(int a,int b) #endif