I want to convert this into C code
int a=1, b=2;
cout<<” a is greater than b”<< a>b;
cout<<”a is less than b”<< a<b;
cout<<” a is equal to b”<< a==b;
I did it as
#include <iostream.h>
#include <conio.h>
void main()
}
int a=1, b=2;
cout<<” a is greater than b”<< a>b;
cout<<”a is less than b”<< a<b;
cout<<” a is equal to b”<< a==b;
getch();
}
Having three problems and as a beginner no idea what to do, plz help.