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:18:06 PM IST
* Created: 03/02/24 10:49:56 AM IST
* Revision: none
* Compiler: gcc
*
@@ -16,6 +16,9 @@
* =====================================================================================
*/
#ifndef __B__
#define __B__
#include "A.h"
#define min(a,b) ( a > b ? b : a )
int multiply ( int a , int b );
#define min(a,b) (a > b? b:a )
int multiply(int a,int b)
#endif