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/A.h Normal file
View File

@@ -0,0 +1,21 @@
/*
* =====================================================================================
*
* Filename: A.h
*
* Description:
*
* Version: 1.0
* Created: 02/02/24 10:15:59 PM IST
* Revision: none
* Compiler: gcc
*
* Author: YOUR NAME (),
* Organization:
*
* =====================================================================================
*/
#define max(a,b) ( a > b ? a : b )
int sum(int a,int b);