You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const int a = 5;
|
|
int b;
|
|
|
|
int my_sum(int x, float y){
|
|
b = a + x - y;
|
|
return b;
|
|
}
|
|
|
|
int main(){
|
|
int a = 7;
|
|
{
|
|
const float a = 3.3;
|
|
my_sum(a, a);
|
|
}
|
|
my_sum(a, b);
|
|
return b;
|
|
}
|