Computer Science, asked by sharwanikalvakolanu, 6 hours ago

Question 3.
In the main section of the program following statements are written:
main()
{
funcA;
funcB();
funcc();
}
Choose the correct statement which will execute after funcA().
Answer:​

Answers

Answered by nidaeamann
1

Explanation:

Among the various options given in question statement the correct option os the second one.

In computer programs, the compiler tests and runs the programs line wise until it gets directional jumps, loop or function calls but even then these are executed line wise/row wise.

Now in the given case, when the main function starts, it first calls function A and after wards it calls function B

Answered by Rameshjangid
0

Answer:- The correct statement which will execute after the funcA() is funcB().

In the main section of the program the statements written are as follows:-

main()

{

funcA();

funcB();

funcC();

}

The statement which will be executed after funcA() will be funcB().

As in the program the statements are executed line by line. In any program the computer executes the written functions line wise or loop wise.

First, the loop will go to the first written function i.e., funcA() and then to the second written function i.e., funcB() and at last to the third written function i.e., funcC().

A main is the predefined keyword or function in c programming. The main is the first function of all c programs that is responsible for starting the start and end i.e., executing and terminating of the particular program.

To know more about the given topic please go through the following

Link1:- https://brainly.in/question/7026729?

Link2:- https://brainly.in/question/11890305?

#SPJ3

Similar questions