Computer Science, asked by kiransingh80, 11 months ago

find the syntax error in the following code #include iostream.h> void exam(float a2) {cout <<"the argument is" <<a2; } void main() {float a1= 11.0(); eaxm (a2);}​

Answers

Answered by busybalaji02pbwcoq
3

Answer:

I have underlined the errors.

Explanation:

#include<iostream.h>

void exam(float a2)

{

 cout<<"The argument is"<<a2;

}

void main()

{

 float a1=11.0  ;

 exam(a1);

 }

/*Hope this helps. Please mark brainliest.*/

Similar questions