Find the syntax error from the following program. Justify each error.
#include<iostream.h>
void exam(float a2)
cout<< 'The argument is'<<a2;
void main()
float al = 11.0;
exam(a2);
Answers
Answered by
0
it is void main not void exam
Similar questions