There is a error in the below program. Which statement will you add to remove it

#include<stdio.h>
 
void main()
{
    int a;
    a = f(1, 3.14);
}
 
float f(int a, float b)
{
    return ((float)a + b);
}

 

Suy nghĩ trả lời câu hỏi trước khi xem đáp án

ATNETWORK
ZUNIA9