172k views
8 votes
What will be the output of this program?

b = 0

b -= 10

print(b)

User IEngineer
by
5.5k points

1 Answer

9 votes

Answer:

Step 1: int fun(int);

Step-by-step explanation:

Step 1: int fun(int);

This is prototype of function fun().It tells the compiler that the function fun() accept one integer parameter and returns an integer value..

Step 2: int i=3; The variable i

User Dmitry Petrov
by
5.1k points