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

31
Header_files/app.c Normal file
View File

@@ -0,0 +1,31 @@
/*
* =====================================================================================
*
* Filename: app.c
*
* Description:
*
* Version: 1.0
* Created: 02/02/24 10:43:11 PM IST
* Revision: none
* Compiler: gcc
*
* Author: YOUR NAME (),
* Organization:
*
* =====================================================================================
*/
#include "B.h"
#define square(x) ( x*x )
int foo(int b);
int foo(int b){
}
int main(){
int a = square(15);
return 0;
}