What is the K & R method to declare formal arguments in a function .
• K & R is called as the Kernighan and Ritchie method of declaring arguments.
Example:
calsum(x, y, z)
int x, y, z;
here x,y,z are the formal parameters.
• Here the values x, y, z are defined in the first statement (function declaration).
• Their data types are defined in the second statement.