Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
//file: myfunc.c
#include "myfunc.h"
long myadd(int a,int b){
return a+b;
}
//end file myfunc.c
-------------------------------
//file myfunc.h
long myadd(int a,int b);
//end file myfunc.h
-------------------------
//file myfndemo.c
#include <stdio.h>
#include "myfunc.h"
void main(void){
long result;
result = myadd(5,5);
printf("%ld\n",result);
}
//end file myfndemo.c