//test add int main(int e){ int a, b; float c; a = 10; b = 2; a = 11; c = 1.6 ; return a+b; } int add(int a, int b){ return a+b; }