Find the errоr in the fоllоwing progrаm segments. Multiple аnswers.void product(){ int а, b, c, result=0; printf( "Enter three integers: " ) scanf( "%d%d%d", &a, &b, &c ); result = a * b * c; printf( "Result is %d", result ); return result;}