Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int x=3 ;
  5. float y=3.0 ;
  6. if(x==y)
  7. printf("x and y are equal n");
  8. else
  9. printf("x and y are not equal ");
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement