Created
September 10, 2015 18:15
-
-
Save codegagan/5e36fea7255fe27cf22b to your computer and use it in GitHub Desktop.
lvalue concept test
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> | |
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