Skip to content

Instantly share code, notes, and snippets.

@codegagan
Created September 10, 2015 18:15
Show Gist options
  • Save codegagan/5e36fea7255fe27cf22b to your computer and use it in GitHub Desktop.
Save codegagan/5e36fea7255fe27cf22b to your computer and use it in GitHub Desktop.
lvalue concept test
#include<stdio.h>
int main()
{
int a = 10, b,x=0;
a >=5 ? b=100:b= 200;
printf("%d\n", b);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment