Adding modified Header files

This commit is contained in:
2024-02-03 11:15:07 +05:30
parent fcb8c87ca6
commit c82a702ab0
3 changed files with 12 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
* Description:
*
* Version: 1.0
* Created: 02/02/24 10:15:59 PM IST
* Created: 03/02/24 10:48:50 AM IST
* Revision: none
* Compiler: gcc
*
@@ -16,6 +16,8 @@
* =====================================================================================
*/
#define max(a,b) ( a > b ? a : b )
int sum(int a,int b);
#ifndef __A__
#define __A__
#define max(a,b) (a > b? a : b)
int sum(int a,int b)
#endif