Answers:
<span style="background-color: rgb(250, 250, 250);">#include<stdio.h></span>
int main()
{
printf("welcome to the world of c");
return 0;
}
#include<iostream>
using namespace std;
int main ()
{
int a,b;
cout<<"enter the value of a,b\n";
cin>>a>>b;
if(a>b)
{
cout<<"a is greater than b\n";
}
if(a<b)
{
cout<<"a is less than b\n";
}
return 0;
}
#include<stdio.h>
</span>
int main()
{
printf("welcome to the world of c");
return 0;
}
Login to add comment