mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-20 02:42:23 +03:00
32 lines
553 B
C
32 lines
553 B
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* 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;
|
|
}
|