Files
C1-Linux_SYS_Prog-AS-/Header_files/A.h

24 lines
508 B
C

/*
* =====================================================================================
*
* 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