mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-19 18:32:24 +03:00
More Organised
This commit is contained in:
31
Header_files/app.c
Normal file
31
Header_files/app.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user