#include<stdio.h>
int main()
{
int a,b;
printf("enter two numbers\n");
scanf("%d %d" ,&a , &b);
if(a>b){
printf("%d > %d" , a , b);
}
else if(b>a)
{
printf("%d > %d " , b ,a);
}
return 0;
}
In software engineering, the software scope refers to the boundaries and limitations of a software project. It defines what the software wi...
No comments:
Post a Comment