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
1
Answer:
close and open brackets
Explanation:
commas are not
Similar questions