float a,b,c;
void add(float a,float b){
c=a+b;
return;
}
int main(){
a=3.3;
b=2.8;
add(a,b);
return c;