C Programming and Technical Programming Definition

Q. Difference between formal argument and actual argument?

A. Formal arguments are the arguments available in the function definition. They are preceded by their own data type. Actual arguments are available in the function call. These arguments are given as constants or variables or expressions to pass the values to the function.

Read Solution (Total 1)

C Other Question

Q. What is a function?

A. A large program is subdivided into a number of smaller programs or subprograms. Each subprogram specifies one or more actions to be performed for the larger program. Such sub programs are called functions.
Q. what are C tokens?
A. There are six classes of tokens: identifier, keywords, constants, string literals, operators and other separators