Computer Science, asked by selvasheki, 1 month ago

V. IDENTIFY THE ERRORS
#include<iostream.h>
void main
{
int a, b;
print("\nEnter the values for a and b");
scanf("%f%f", &a,&b);
if(a>b)
{
printf("\n a is greater");
}
else
{
printf("\n b is greater")
}
getch();
}​

Answers

Answered by sathwikamattipelli10
1

Answer:

close and open brackets

Explanation:

commas are not

Similar questions