Assuming this is our only source file, and there are no libr…
Assuming this is our only source file, and there are no libraries aside from the standard library, what type of error would result from compiling this code? #pragma once float comeAddMeBrah(int first, double second);void comeAddMeBrah(int first, float second){ first + second;}int main() { int indianaPi = 3; float theRest = 0.14159f; float result = comeAddMeBrah(indianaPi, theRest); }