If,else Equal or not equal :C Program If,else Equal or not equal :C Program #include<stdio.h> #include<conio.h> void main() { int a,b; clrscr(); printf("Enter Values of a and b\n"); scanf("%d%d",&a,&b); if(a==b) { printf("Numbers are equal"); } else { printf("Numbers are not equal"); } getch(); } 29 Oct 2015
0 comments:
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.