Skip to content

Instantly share code, notes, and snippets.

@TamojitSaha
Created April 26, 2020 08:35
Show Gist options
  • Save TamojitSaha/ef1cffc6e7b9d627d874dd2752dca1f9 to your computer and use it in GitHub Desktop.
Save TamojitSaha/ef1cffc6e7b9d627d874dd2752dca1f9 to your computer and use it in GitHub Desktop.
demonstartion of ternary operator without if condition in C
#include <stdio.h>
int i=1;
int main()
{
(i) ?: 1;
printf("%d",i);
return 0;
}
@TamojitSaha
Copy link
Author

@sandeepansg Have a look.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment