Created
September 23, 2016 17:52
-
-
Save amirul12/6cb04d2af7c6730100abd762ddee8458 to your computer and use it in GitHub Desktop.
দুটি সংখ্যার মধ্যে বড় সংখ্যা নির্ণয়ের জন্য কন্ডিশন অপারেটর ব্যবহার করে সি প্রোগ্রাম
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <conio.h> | |
main( ) | |
{ | |
int a,b,ans; | |
printf("Enter a number: "); | |
scanf("%d",&a); | |
printf("Enter another number: "); | |
scanf("%d",&b); | |
ans=(a>b)?a:b; | |
printf("Maximum number:%d",ans); | |
getch(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
10
20