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

28
Header_files/app.i Normal file
View File

@@ -0,0 +1,28 @@
# 0 "app.c"
# 0 "<built-in>"
# 0 "<command-line>"
# 1 "/usr/include/stdc-predef.h" 1 3 4
# 0 "<command-line>" 2
# 1 "app.c"
# 19 "app.c"
# 1 "B.h" 1
# 19 "B.h"
# 1 "A.h" 1
# 21 "A.h"
int sum(int a,int b);
# 20 "B.h" 2
int multiply ( int a , int b );
# 20 "app.c" 2
int foo(int b);
int foo(int b){
}
int main(){
int a = ( 15*15 );
return 0;
}