From 5b92543471d208d912f236a3023e63d33981d26c Mon Sep 17 00:00:00 2001 From: mohit gupta <61322964+mohitgupta08@users.noreply.github.com> Date: Fri, 2 Oct 2020 00:29:41 +0530 Subject: [PATCH] Update README.md --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index 57f92e38901..ada1eaba939 100644 --- a/README.md +++ b/README.md @@ -148,6 +148,31 @@ Please make sure to check out our resources too before opening an issue: * Our [Changelog](./CHANGELOG.md) for recent breaking changes. * Our [Contribute](./CONTRIBUTING.md) guide. * Our [samples repo](https://github.com/awsdocs/aws-doc-sdk-examples/tree/master/cpp). +create number we find +#include +#include + + int main( int argc, char* arg[]) + { + int a,b,c; + printf("enter the number"); + scanf("%D,%d",&a,&b,&c); + if((a>b)&(a>c)) + { + printf("\n %d is larger",a); + } + else + if((b>a)&(b>c)) + { + printf("\n %d is largest",b); + } + else + { + printf("\n %d is greatest",c); + } + return 0; + } + # Using the SDK and Other Topics * [Using the SDK](./Docs/SDK_usage_guide.md)