More Organised

This commit is contained in:
2024-02-02 22:57:09 +05:30
commit 6fc2b0cef0
7 changed files with 329 additions and 0 deletions

21
Header_files/B.h Normal file
View File

@@ -0,0 +1,21 @@
/*
* =====================================================================================
*
* Filename: B.h
*
* Description:
*
* Version: 1.0
* Created: 02/02/24 10:18:06 PM IST
* Revision: none
* Compiler: gcc
*
* Author: YOUR NAME (),
* Organization:
*
* =====================================================================================
*/
#include "A.h"
#define min(a,b) ( a > b ? b : a )
int multiply ( int a , int b );