What are the following notations of defining functions known as?i. int abc(int a,float b) { /* some code */ }ii. int abc(a,b) int a; float b; { /* some code*/ }Answer:i. ANSI C notationii. Kernighan & Ritche notation