C Programming and Technical Programming Definition

Q. what are C tokens?
A. There are six classes of tokens: identifier, keywords, constants, string literals, operators and other separators

Read Solution (Total 3)

C Other Question

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.
Question. What are C identifiers?

Answer. These are names given to various programming element such as variables, function, arrays.It is a combination of letter, digit and underscore.It should begin with letter. Backspace is not
allowed.