Possible Duplicate:
What does the >?= operator mean?
I was wondering what is the <?= operator I keep seeing in C++ code. It doesn't compile on my system, but I'm sure it is correct. It's used like this:a <?= something;
Also, what would I need to do to be able to compile it?
EDIT POST:
Please see this source code (it is a solution of the problem Square Fields (Problem B) of the winner of a practice Google Code Jam contest -- see here). I saw the same pattern of characters in some other submissions too.
#include<cstdio>
#include<algorithm>
#include<iostream>
#include<sstream>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<numeric>
#include<cmath> using namespace std;
#define ALL(t) t.begin(),t.end()
#define FOR(i,n) for (int i=0; i<(int)(n); i++)
#define FOREACH(i,t) for (typeof(t.begin()) i=t.begin(); i!=t.end(); i++) typedef vector<int> vi; typedef long long int64;
int t[15][1<<15]; int main() { int N;cin>>N; for(int c=1;c<=N;c++){
int n,k,x[30],y[30];
cin>>n>>k;
FOR(i,n)cin>>x[i]>>y[i];
FOR(take,1<<n)if(take){
int minx=1000000,maxx=-1,miny=1000000,maxy=-1;
FOR(i,n)if(take&1<<i)minx<?=x[i],maxx>?=x[i],miny<?=y[i],maxy>?=y[i];
t[1][take]=(maxx-minx)>?(maxy-miny); // cout<<take<<" "<<t[1][take]<<endl;
}
for(int kk=2;kk<=k;kk++)FOR(take,1<<n){
t[kk][take]=t[kk-1][take];
for(int take2=take;take2;take2=(take2-1)&take)
t[kk][take]<?=t[kk-1][take-take2]>?t[1][take2];
}
cout<<"Case #"<<c<<": "<<t[k][(1<<n)-1]<<endl; } return 0; }
<?=in C++ code ever in the years I've done C++ programming. Can you provide more context? (Like say, a code snippet you found that has this?) It's possible that the code you're looking at isn't actually C++ at all. – In silico May 15 '11 at 3:54It doesn't compile on my system, but I'm sure it is correct.Isn't the fact that it doesn't compile clue enough that it isn't correct? Learn to trust your compiler - it's going to be right about these things more often than you... :) – Mac May 15 '11 at 3:57