Skip to content

Instantly share code, notes, and snippets.

@kruttaras
Last active November 7, 2016 22:43
Show Gist options
  • Select an option

  • Save kruttaras/a8f0a79280f188f6ca9b11523608be50 to your computer and use it in GitHub Desktop.

Select an option

Save kruttaras/a8f0a79280f188f6ca9b11523608be50 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <math.h>
using namespace std;
int main() {
cout<<"e= "<<M_E<<endl;
float z = 33.8461;
int b = -11, c = (int) z, g = 0x21;
cout<<"=============";
cout<<"c "<<c<<"\n";
cout<<"g "<<g<<"\n";
cout<<"!( g>=c || b == -c/3 && b<=g) :"<<!( g>=c || b == -c/3 && b<=g)<<"\n";
cout<<"-b^0375 | c<<3 :"<< (-b ^ 0375 | c<<3)<<"\n";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment