Advertisement
mvenkatesh431

Untitled

Jul 12th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. int main(void) {
  3.     int a = 1,b = 2,c = 3;
  4.     int d;
  5.     d = a < b < c;
  6.     printf("The Value of d is : %d \n",d);
  7.     return 0;
  8. }
  9. // Learn C at at sillycodes4u.blogspot.in
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement